Skip to main content

Get Collection

GET 

/api/v1/assetcollection/:collection_id

Retrieve a Collection.

Note: When no Collection ID is passed, the API returns the Default Basket Collection. Basket Collection name is always SELECTED_ASSETS. Basket is a special collection whose name, description and group_access cannot be updated.

HTTP RESPONSE

ParameterTypeDescription
statusstringOK or ERROR
dataJSONCollection in Asset Collection JSON format

Response JSON

{
"status": "OK",
"data": {
"id": 21,
"user_id": 45,
"name": "SELECTED_ASSETS",
"description": "",
"last_update": "2022-01-24T09:11:05Z",
"assets": ["3b5123160c474720931292c33eb46c52"],
"group_access": false,
"user_name": "John Doe",
"user_email": "john@example.org",
"extended_result": {}
}
}

Request

Responses

Successful operation