GetAssetInLibrary
This method can be used for the following: Get an asset in the library (must have Assets Module enabled in your tenant configuration!);
Last updated
GET /api/ss/library/asset?cf_key_allowlist=key1&cf_key_allowlist=key2 HTTP/1.1GET /api/ss/library/asset?cf_key_blocklist=key1&cf_key_blocklist=key2 HTTP/1.1curl -X GET 'http://localhost:3000/api/ss/library/asset?id=60c92f6113100562a6a58a6f' -H 'Host: localhost:3000' -H 'X-SSAPI-KEY: ***************************************' -H 'Content-Type: application/json' -H 'Connection: close'{
"asset": {
"id": "...",
"created": "...",
"created_by": "...",
"modified": "...",
"name": "...",
"type": "...",
"external_id": "...",
"details": "...",
"groups": [
{
"name": "...",
"id": "..."
}
],
"projects": [
{
"name": "...",
"id": "..."
}
],
"asset_library_ids": [
{
"id": "...",
"name": "..."
}
],
"custom_fields" : [
{
"key" : "...",
"value" : "..."
}
]
}
}