TEASEDocs
API ReferenceVault

A folder as a content drop

Returns a folder packaged as a drop: items classified by role (video / photoset / BTS) plus the ordered bundle media_ids for one-tap selection of the whole drop. Requires a read-scoped key.

Authorization

bearerAuth
AuthorizationBearer <token>

Your al_live_<prefix>_<secret> API key. Mint and manage keys in the dashboard.

In: header

Path Parameters

folder_id*string

Vault folder/album id.

Response Body

application/json

application/json

GET
/api/admin/vault/drop/{folder_id}
curl -X GET "https://example.com/api/admin/vault/drop/string"
{  "folder_id": "f_8842",  "roles": {    "video": [      "501"    ],    "photoset": [      "502",      "503"    ],    "bts": [      "504"    ]  },  "bundle_media_ids": [    "501",    "502",    "503",    "504"  ]}
{  "detail": "Not authenticated"}