Guides

Create/Duplicate

Create

Create a new Asset Collection

📘

A collection can have a maximum of 30 assets.

REQUEST PARAMETERS

ParameterTypeDescription
namestringCollection name. Defaults Collection {timestamp}
assetsJSONList of asset ids. Defaults to empty list
descriptionstring(optional) Collection description. Defaults to empty string
group_accessboolean(optional) true or false. Defaults to false

REQUEST JSON

{  "name": "Test Collection",
   "assets": ["b3ad7854e1ad4ce8a8c83272447f980b","caf2b5f2e80a40729e32489ee65ef0d8"]
}

HTTP RESPONSE

Collection in Asset Collection JSON format

Duplicate

Duplicate an Asset Collection

Include Source Collection id source_id to duplicate

REQUEST PARAMETERS

ParameterTypeDescription
source_idnumberSource Collection id to duplicate
namestring(optional) Collection name. Defaults to Source Collection Name formatted as Copy of {Source Collection Name} @ {timestamp}
description string(optional) Collection description. Defaults to source collection description
group_access boolean(optional) true or false. Defaults to false

REQUEST JSON

{
"source_id": 1,
"name": "My Collection",
"description": "a description",
"group_access": false
}

HTTP RESPONSE

Collection in Asset Collection JSON format.

Language
Credentials
Header
URL
Click Try It! to start a request and see the response here!