GET
/
workspaces
/
assets
/
{asset_id}
/
libraries
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
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-account-id
string
required
x-workspace-id
string
required

Path Parameters

asset_id
string
required

The ID of the asset

Response

200 - application/json
A list of asset libraries
library_id
string
required

The unique identifier for the library.

asset_id
string
required

The unique identifier for the asset.

library
object
required

The library associated with the asset.