Asset Collections provide a robust method for managing assets and collaborating with other users. Collections can be private to a user or can be shared within a user group.
Asset Collection JSON Format
Asset Collection has the below JSON structure.
{
"id": 21,
"user_id": 45,
"name": "My Collection",
"description": "An example description",
"last_update": "2022-01-24T09:11:05Z",
"assets": ["3b5123160c474720931292c33eb46c52"],
"group_access": false,
"user_name": "John Doe",
"user_email": "[email protected]",
"extended_result": {}
}
Parameter | Type | Description |
---|---|---|
id | integer | Collection ID |
name | string | Collection name |
description | string | Collection description |
last_update | date | When the collection was updated last, ISO 8601 datetime value |
assets | JSON | List of asset IDs |
group_access | boolean | true if assets can be accessed by other users in the user group, false otherwise |
user_id | integer | Collection creator ID |
user_name | string | Collection creator name |
user_email | Collection creator email | |
extended_result | JSON | Like {"ASSET_ID": ASSET_JSON} } where ASSET_JSON is in the standard Asset JSON format |