cURL
curl --request GET \ --url https://api.mudstack.com/workspaces/assets/{asset_id}/libraries \ --header 'Authorization: Bearer <token>' \ --header 'x-account-id: <x-account-id>' \ --header 'x-workspace-id: <x-workspace-id>'
[ { "library_id": "<string>", "asset_id": "<string>", "library": { "id": "<string>", "workspace_id": "<string>", "name": "<string>", "description": "<string>", "thumbnail_file_id": "<string>", "defaultAvatar": 123, "created_by_user_id": "<string>", "sequence": 123 } } ]
Retrieve a list of asset libraries for a specific asset.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the asset
A list of asset libraries
The unique identifier for the library.
The unique identifier for the asset.
The library associated with the asset.
Show child attributes
Unique identifier for the library.
Identifier for the workspace to which the library belongs.
Name of the library.
Description of the library.
Identifier for the thumbnail file associated with the library.
Default avatar for the library.
Identifier for the user who created the library.
Sequence number for ordering libraries.
Was this page helpful?