API Documentation
Toggle TOC panel
<access-service>/api/v1/organisations/{orgGroupId}/objects

URL structure

1 https://access-service.xy-company.com/api/v1/organisations/{orgGroupId}/objects

where {orgGroupId} is the ID of an organisation.

Supported methods and overview

  • POST - initializes a new Incomplete file object (i.e. Secure Object) within an organisation (specified by orgGroupId), along with the option to set any combination of the following properties on the resulting file:
    • The file's name and location.
    • Collaborators (as well as their permission sets).
    • Classifications.
  • GET - retrieves a list of high-level information associated with all (active versions of) file objects that have been created in an organisation specified by orgGroupId (available to Organisation administrators only).

Detailed description

This API endpoint serves a number of purposes:

POST method requests:

  • Initializes a new Incomplete file object within an organisation (specified by orgGroupId), by associating the cryptographic key (obtained through the <access-service>/api/v1/keys endpoint) with this new file object. This allows the file object's data to be either:
    • Encrypted locally (by your client application) and then uploaded to the Cocoon Data Platform's Content Service in its encrypted form (via the POST method on the <content-service>/api/v1/objects/{objectId}/contents endpoint - in multiple requests if necessary). During the upload process, the file object is then completed (which changes its state from Incomplete to Created) using the SHA-512 hash value (calculated locally by your client application) of the locally-encrypted data.
    • Uploaded in its unencrypted form (also via the POST method on the <content-service>/api/v1/objects/{objectId}/contents endpoint - in multiple requests if necessary) for server-side encryption by the Content Service, then storage. This process automatically completes the file object because the Content Service associates its own calculated SHA-512 value of the server-side encrypted data, with the file object.
  • ( Deprecated ) Creates a new completed file object (whose state is Created) within an organisation (POST method), by associating the new file object with both its cryptographic key and the SHA-512 value of the file's encrypted data (specified through this endpoint's sha512 parameter). (Be aware that this data must have been encrypted externally - i.e. not via server-side encryption by the Content Service).
    Note: Associating the SHA-512 value of a file object's encrypted data through this endpoint is now a deprecated approach. Instead use the <content-service>/api/v1/objects/{objectId}/contents endpoint for this purpose.

The Cocoon Data user whose account creates a new file object through this endpoint becomes the owner 1 of this file object. When making the POST method request to this endpoint, the following properties can also be set on this file object:

  • Name (specified through this endpoint's name parameter) - the name of the new file.
  • Parent folder - i.e. collection (specified through this endpoint's parentId parameter) - the folder in which the new file will be located.
  • Collaborators and their permission sets (specified through this endpoint's collaborators parameter) - where a permission set is specific to each individual collaborator. For each collaborator, one of the following four permission sets can be applied:
    • View - grants the collaborator the individual View permission to allow the file's 2 :
    • Download - grants the collaborator the individual View permission (provided by the View permission set), as well as the following additional permissions to:
    • Upload - grants the collaborator the individual permissions provided by the Download permission set, as well the following additional permissions to:
      • Upload a new version of the file and its actual content (via the POST method on the <content-service>/api/v1/objects/{objectId}/versions endpoint), through the Upload File permission.
      • Access more information/properties about the file's collaborators, through the View Other permission.
    • Modify - grants the collaborator the individual permissions provided by the Upload permission set, as well as the following additional permissions to perform any of these actions on this file object and/or its content (in the owner's storage space):
    • Manage - grants the collaborator the individual permissions provided by the Modify permission set, as well as the following additional permissions to perform any of these actions on this file object and/or its content (in the owner's storage space):
  • Classification (specified through this endpoint's labelId parameter) - defines which groups of Cocoon Data users can be shared the file.
  • Others such as the MIME type and content size of the file object's data in its unencrypted form, both of which can be specified through the mimeType and contentSize parameters, respectively.

1 Be aware that the ownership of a file object can be changed to that of another Cocoon Data user.

2 Relates to the active version of the file.

GET method requests:

  • Retrieves a list of high-level information only associated with all (active versions of) file objects that have been created in an organisation (specified by orgGroupId) for its Organisation administrators. Access to more detailed information about a file object, such as its encrypted data and sharing/collaborator details, is not permitted through this API endpoint.

Supported roles and conditions

This API endpoint supports requests utilizing Cocoon Data user accounts with the following roles (as described in the Organisation Administrator's Guide) and conditions:

  • Originator - using the POST method, when this user:
    • is a member of the organisation whose ID is specified by {orgGroupId} in the request's URL and
    • will create and initially own the resulting file object.
  • Originator, Collaborator and Ad hoc - using the POST method, when the parentId parameter is specified for a folder (within the organisation specified by {orgGroupId}) on which this user is a collaborator with the Upload File permission.
    Note: Such a collaborator user:
    • Automatically becomes a collaborator on the resulting file object.
    • Cannot set this endpoint's (now deprecated) sha512 parameter in the request. However, the user account utlized in creating a file object through this endpoint can also be utilized to set this file object's sha512 parameter value via the <content-service>/api/v1/objects/{objectId}/contents endpoint.
    • Cannot set this endpoint's collaborators parameter, unless this user also has the Share permission on the folder represented by parentId.
  • Organisation administrator - using the GET method, when this user is a member of the organisation specified by {orgGroupId} in the request's URL.

The Cocoon Data Platform's resources available to a Cocoon Data user meeting the criteria above is determined by the access token submitted in the header of requests to this endpoint.

Required headers

The appropriate access token as the Bearer token:

  • Authorization: Bearer eyJhbGciOiJSUzI1NiJ9.eyJleHAiOjE0NjcwMTY2NjYsInVzZXJfbmFtZSI6ImFsZXgub...

The following header is required if the body of the request has a JSON object (i.e. POST requests only):

  • Content-Type: application/json

Required POST-request parameters

The following required parameters must be sent in the body of the POST request, each as individual members of a JSON object:

  • keyId - The ID value associated with the cryptographic key (obtained through the <access-service>/api/v1/keys endpoint). Specifying this parameter associates the cryptographic key with the new file object.
    Example (POST request parameters - minimum required - initializing an Incomplete file object with a cryptographic key's ID only):
    { "keyId": "730248393980776448" }

Optional POST-request parameters

The following optional parameters can also be sent in the body of the POST request, each as individual members of the JSON object that includes the Required POST-request parameters above:

  • collaborators ( For collaborator users as opposed to owners, requires the Share permission on parentId ) - A parameter containing the following optional sub-element parameters that relate to the collaborators being applied to this file object:
    • list - An array of elements about each collaborator, where each element of this array contains the following optional sub-elements:
      • email - The email address of the person to add as a collaborator to the file object. (This sub-element is optional, although omitting it serves no purpose.)
      • permissionSet - The permission set to apply to this collaborator. To apply a permission set to this collaborator, specify its ID as a sub-element parameter of this parameter: Note: If this sub-element is omitted, then the View permission set is automatically applied to this collaborator.
    Additional notes:
  • contentSize ( For collaborator users, requires the Upload File permission on parentId ) - The size (in bytes) of the file object's data (in its unencrypted form) to be recorded by the Cocoon Data Platform's Access Service. Specify this value to record the size of a completed file object's unencrypted data, which is to be encrypted locally by your client application.
    Important:
    • The contentSize value can only be set once on a file object, at which point this property becomes immutable.
    • If you intend to upload the file object's unencrypted data to storage via the Cocoon Data Platform's Content Service, then omit this parameter. When you make the upload request, the Content Service automatically calculates the size of the unencrypted data and assigns this value to contentSize. The Content Service then proceeds to encrypt the data and send this encrypted data to storage.
    • If you have already specified the contentSize parameter's value before uploading a file object's unencrypted data, then the Content Service will be unable to assign the unencrypted data's size to the contentSize property as it is immutable. The Access and Content Services will record errors in their respective logs. Nevertheless, the unencrypted data will still be encrypted by the Content Service, followed by the encrypted data being sent to storage and associated with the file object.
  • labelId ( Only settable by the owner of the resulting file object - not by a collaborator user on the parentId ) - The ID of the classification to apply to the file object. If this parameter's value is an empty string or the parameter is omitted altogether, then no classification is applied to the file object and therefore, no classification restrictions (i.e. checks on Cocoon Data users' group membership and the association of these groups with classifications - see User group endpoints for more information) are placed on any collaborators added to this file object.
    Notes:
    • Applying a classification has the potential to restrict access to the file object by any inherited collaborators. Inherited collaborators are collaborators who are able to access this file object because these collaborators were explicitly applied to an ancestral folder.
    • If Cocoon Data users' group memberships (associated with the classification applied to the file object in the request) do not comply with any collaborators applied to this file object (above), then this request will fail.
    • For more information about configuring classifications, see Classification endpoints.
  • mimeType ( For collaborator users, requires the Upload File permission on parentId ) - The MIME type of the data associated with the file object. For example, if the data to be encrypted into this file object is an image in JPEG format, its MIME type value would be image/jpeg.
  • name ( For collaborator users, requires the Upload File permission on parentId ) - The name to apply to the file object. For example, this might be the name of the original file (whose data is being encrypted into this file object) and its extension.
  • parentId - The ID of the folder (within the organisation specified by {orgGroupId}) that will contain the file object. Specifying a value of 0 (or omitting this parameter) results in the new file being located at the default logical root storage location.
  • sha512 ( Deprecated ) - The SHA-512 value of the file object's encrypted data.
    Important:

    • This parameter is deprecated on this endpoint. To set this value on a file object, do so through the <content-service>/api/v1/objects/{objectId}/contents endpoint.
    • The sha512 value can only be set once on a file object, at which point this property becomes immutable.
    • Omitting this parameter results in the initialization of an Incomplete file object.
    • Specifying this parameter and its value results in the creation of a completed file object, whose state is Created.
    • You can specify this parameter if you have encrypted the file object's data externally (e.g. locally by your client application) and intend to upload this encrypted data to storage via the Cocoon Data Platform's Content Service.
    • If you intend to upload the file object's unencrypted data to storage via the Content Service, then omit this parameter; the Content Service automatically assigns this sha512 value (after performing server-side encryption) when you make the upload request.

    Example (POST request parameters - initializing an Incomplete file object with collaborators and a classification):

    {
    "keyId": "732857710936506368",
    "collaborators": {
    "list": [
    {
    "email": "chris.collaborator@xy-company.com",
    "permissionSet": {
    "id": 2
    }
    },
    {
    "email": "olly.originator@xy-company.com",
    "permissionSet": {
    "id": 3
    }
    }
    ]
    },
    "labelId": "732858991201665024",
    "mimeType": "image/jpeg",
    "name": "paraglider.jpg",
    "parentId": "0"
    }

    Note: The permission set with an ID of 2 is Download and with an ID of 3 is Modify. See <access-service>/api/v1/permissions/sets for more information about permission sets.

Optional GET-request parameters

The following optional parameters can be sent in the URL of the GET request:

  • searchText - Any text substring used to filter for all file objects which have been either initialized or created within the organisation, where this text substring must match that of the file object's field specified in searchColumn below (or any of these fields). If this parameter is omitted, then no filtering is performed.
  • searchColumn - The file object's field upon which the text substring (specified in searchText above) is used for filtering file objects returned in the response. The fields available to this text searching include:
    • name - the file object's name,
    • id - the file object's ID,
    • owner_email - email address of the file object's current owner and
    • all - any of these fields above.
    If this parameter is omitted, then no filtering is performed.
  • limit - A value from 0 to any positive integer, representing the maximum number of items to be returned in the response from the Cocoon Data Platform, where an individual item is information about a file object within the organisation. If this parameter is omitted, then its value is 0 by default, which imposes no limit on the number of items returned.
  • offset - A value representing the count order of all retrievable items (i.e. file objects) from the Cocoon Data Platform returned in the response. Calls to this API endpoint are soon likely to amount to potentially unmanagable numbers of items being returned from the Cocoon Data Platform. Since the order of these items in the response could differ significantly, based on the values of the orderBy and sortBy parameters below, this offset parameter provides pagination for items returned in responses, allowing items to be retrieved from any count greater than 0 (i.e. the first item returned in a response). If this parameter is omitted, then its value is 0 by default.
  • orderBy - An enumeration (enum) value representing the order in which items (i.e. file objects) are returned in the response. This parameter orders items according to the value of the sortBy parameter specified below. Ordering items can be in either ascending alphanumeric order (by specifying the value ASC for this parameter) or descending order (by specifying the value DESC). If this parameter is omitted, then its value is DESC by default.
  • sortBy - An enum value representing the field (i.e. member) of a retrieved item by which items (i.e. file objects) returned in the response will be sorted. Valid field values for this parameter include:
    • name - the file object's name,
    • owner_email - the email address of the file's owner,
    • state - the terms Created, Deleted, Incomplete or Recycled (alphabetically),
    • created - the date when the file object was created,
    • modified - the date when the file object was last modified and
    • id - the file object's ID.
    These enum values can also be specified using uppercase characters. If this parameter is omitted, then its value is id by default - bearing in mind that file object IDs are generated in numerical order.
    Example (GET request - retrieving information about an organisation's file objects whose name contains the text substring 'paraglider'):
    1 https://access-service.xy-company.com/api/v1/organisations/722338038193385472/objects?searchText=paraglider&searchColumn=name

Note: Calling this method without any parameters retrieves a list of all file objects that have been created within the organisation. See Supported roles and conditions above for details.

Returns

If the request succeeded, then an HTTP response status 200 OK is returned.

For successful requests only, a JSON-formatted response containing the following members is also returned:

  • items ( from GET requests only ) - An array containing information about all file objects that have been initialized or created on the Cocoon Data Platform, which have been filtered by any parameters submitted in the request. Each element of this array contains information about one of these file objects (represented as an object containing the following members unless otherwise stated).
  • id - The ID value of the initialized (i.e. Incomplete) or Created file object.
  • shareStartTime ( from GET requests only ) - The date and time from which collaborators on this file object can begin accessing the file's content.
    Note: A bug in this version of the Cocoon Data Platform results in this property always returning the value of null in any requests to this endpoint.
  • shareEndTime ( from GET requests only ) - The date and time from which collaborators' access to this file object's content ceases.
    Note: A bug in this version of the Cocoon Data Platform results in this property always returning the value of null in any requests to this endpoint.
  • enabled ( from GET requests only ) - A boolean value that indicates whether or not the file object is enabled (i.e. true) or disabled (false). For more information about disabling/re-enabling file objects, see <access-service>/api/v1/organisations/{orgGroupId}/objects/{objectId}/enable.
  • shared - A boolean value that indicates whether or not the file object has been shared with any collaborators.
    Note: A bug in this version of the Cocoon Data Platform results in this property always returning the value of false in any requests to this endpoint.
  • name - The name of the file object, which was set when the file object was initialized or created, or last updated. This value is null if the name was never specified.
  • sha512 ( from POST requests only ) - The unique SHA-512 hash value of the encrypted data associated with the Created/complete file object. For initialized/Incomplete file objects, this value is null.
  • owner ( from GET requests only ) - A member containing information about the Cocoon Data user who is the current owner of the file object. This member contains the following sub-members:
    • email - This email address of the Cocoon Data user who owns this file object.
    • firstName - The first name set by this Cocoon Data user. This is the first name that appears on the Users page of SafeShare Organisation Administration and the My Account feature of Cocoon Data SafeShare for Web.
    • lastName - The last name set by this Cocoon Data user. Like the first name (above), this appears on the User page of Organisation Administration and the My Account feature of SafeShare for Web.
    • mfaEnabled - A boolean value that indicates whether or not two-factor authentication has either been set by this Cocoon Data user on their own account, or enforced for all members of the organisation (by an Organisation administrator).
    • id - The ID of this Cocoon Data user's account.
    • accountType - A member containing the internationalization (I18N) property key/code 3 for the account type, including the account type's value (i.e. hard-coded in the Cocoon Data Platform), as sub-members:
      • i18n - A member containing the I18N code 3 for the account type as sub-members:
        • code - The I18N code for the account type's value, beginning with server.useraccounttype. This I18N code could include the substring local, ldap or external.
        • arguments - An array containing any arguments/variables that constitute the value of the I18N code above. Since none of the account types' values contain any variables, this array is always empty.
      • value - The value of accountType as it is hard-coded in the Cocoon Data Platform. Your client application can exploit this value (instead of i18n above) if I18N is not required.
      3 Your client application can exploit the Cocoon Data Platform's I18N features, by initially downloading the relevant language bundles (from the the Cocoon Data Platform), then using the i18n code (and if applicable, arguments) values above to extract the property values derived from these language bundles for use in your client application. For more information about the Cocoon Data Platform's I18N features, see Managing internationalization in the SafeShare Administrator's Guide.
      Note: For more information about account types, see the description for Account Type in the Organisation Administrator's Guide.
  • hasView - A boolean value that indicates whether or not the Cocoon Data Platform's Content Service has generated a read-only view of the file object's data in storage.
    Notes:
    • The Content Service automatically sets this value to true after it sets the value of canGenerateView (below) to true and the Content Service has successfully generated and stored a read-only view of the file object's data.
    • If your client application is managing its own file data (i.e. the data is not being uploaded to the Content Service), then your application can exploit this element's value for any purpose.
  • canGenerateView - A boolean value that indicates whether or not the Content Service is capable of generating a read-only view of the file object's data, which is based on the file name extension of the original file that was encrypted (as specified in name). For more information, see File formats supported by the content viewer in SafeShare for Web User's Guide.
    Notes:
    • Assuming the file name extension is one that supports a view being generated, the Content Service then automatically sets this value to true after the file object's data has been successfully uploaded and stored and the size of this data is less than the maximum configured file size for generating a view (i.e. 20 MB by default).
    • If your client application is managing its own file object data (i.e. the data is not being uploaded to the Content Service), then your application can exploit this element's value for any purpose.
  • organisation ( from POST requests only ) - A member containing information about the organisation in which this file object was created. This member contains the following sub-members:
    • name - The name of the organisation.
    • description - The description of the organisation, which can be set by Organisation administrators.
    • mfaEnabled - A boolean value that indicates whether (true) or not (false) two-factor authentication has been enforced for all members of the organisation.
    • id - The ID of the organisation.
  • permissions - An array listing the individual permissions that the owner above or a collaborator (whose access token was used in the request to this endpoint), has inherited from the location represented by parentId.
    Note: A bug in this version of the Cocoon Data Platform results in this property always returning an empty array in any requests to this endpoint.
  • mimeType - The MIME type of the data associated with the file object, which was set when the file object was initialized or created, or last updated. This value is null if either the mimeType was never specified or this member is a response from a GET request.
    Note: A bug in this version of the Cocoon Data Platform results in this property always returning the value null in any GET requests to this endpoint.
  • contentSize - The amount of space (in bytes) of the file object's data (as recorded by the Cocoon Data Platform's Access Service). For initialized/Incomplete file objects, this value is null.
  • parentId ( from POST requests only ) - The ID of the folder/collection that contains the file object. A value of 0 indicates that this file object is located at the logical root location.
  • state - The I18N code for the current state of the file object. This I18N code could include the substring incomplete for an initialized file object, created for a completed file or deleted for a deleted file.
  • modifiedAt - The date and time when the file object was last modified. In responses from POST requests, this date and time should match (or be close to) that of the createdAt value below. Otherwise, if the file object has since been modified, this date and time should reflect when the file object was last modified.
  • createdAt - The date and time when the file object was first created, either in its Incomplete or Created states.
  • labelName ( from POST requests only ) - The name of the classification applied to the file object. Like labelId below, if this element's value is null, then no classification was specified (i.e. the labelId parameter was specified with an empty string or this parameter was omitted) when the file object was initialized or created, or last updated. This means that no classification restrictions (i.e. checks on Cocoon Data users' group membership and the association of these groups with individual classifications - see User group endpoints for more information) have been placed on collaborators added to this file object.
  • labelId ( from POST requests only ) - The ID of the classification applied to the file object. If this element's value is null, then no classification was specified (i.e. the labelId parameter was specified with an empty string or this parameter was omitted) when the file object was initialized or created, or last updated.
  • count ( from GET requests only ) - The total number of file objects which have been created within the organisation (regardless of these file objects' states).
    Note: If the searchText and searchColumn parameters were specified in the request, then this value represents the number of items (above) returned in the response.
  • offset ( from GET requests only ) - The value of the offset which had been used in the request to this API endpoint.
    Example (response from a POST request - initializing an Incomplete file object):
    {
    "id": "732860187958231040",
    "shared": false,
    "name": "paraglider.jpg",
    "sha512": null,
    "hasView": false,
    "canGenerateView": null,
    "organisation": {
    "name": "XY Company",
    "description": "",
    "mfaEnabled": false,
    "id": "732855142835470336"
    },
    "permissions": [],
    "mimeType": "image/jpeg",
    "contentSize": null,
    "parentId": "0",
    "state": "server.object.states.incomplete",
    "modifiedAt": "2016-07-15T07:24:44.693Z",
    "createdAt": "2016-07-15T07:24:44.693Z",
    "labelName": "Unclassified",
    "labelId": "732858991201665024"
    }

    Example (response from a GET request - retrieving a list of file objects created within the organisation):
    {
    "items": [{
    "id": "732861715897040896",
    "shareStartTime": null,
    "shareEndTime": null,
    "enabled": true,
    "shared": false,
    "name": "Board Presentation.docx",
    "owner": {
    "email": "alex.originator@xy-company.com",
    "firstName": "Alex",
    "lastName": "Originator",
    "mfaEnabled": false,
    "id": "732856217122553856",
    "accountType": {
    "i18n": {
    "code": "server.useraccounttype.local",
    "arguments": []
    },
    "value": "LOCAL"
    }
    },
    "hasView": false,
    "canGenerateView": null,
    "permissions": [],
    "mimeType": null,
    "state": "server.object.states.created",
    "modifiedAt": "2016-07-15T07:31:04.897Z",
    "createdAt": "2016-07-15T07:30:48.982Z",
    "contentSize": null
    }, {
    "id": "732860187958231040",
    "shareStartTime": null,
    "shareEndTime": null,
    "enabled": true,
    "shared": false,
    "name": "paraglider.jpg",
    "owner": {
    "email": "alex.originator@xy-company.com",
    "firstName": "Alex",
    "lastName": "Originator",
    "mfaEnabled": false,
    "id": "732856217122553856",
    "accountType": {
    "i18n": {
    "code": "server.useraccounttype.local",
    "arguments": []
    },
    "value": "LOCAL"
    }
    },
    "hasView": false,
    "canGenerateView": null,
    "permissions": [],
    "mimeType": null,
    "state": "server.object.states.incomplete",
    "modifiedAt": "2016-07-15T07:24:44.985Z",
    "createdAt": "2016-07-15T07:24:44.693Z",
    "contentSize": null
    }],
    "count": "2",
    "offset": "0"
    }