Bundle State
- Method:
GET - URL:
https://api.tokportal.com/bundles-state?bundle_id=<uuid> - Auth:
X-API-Key
Response (shape excerpts):
{
"bundle": { "id": "...", "title": "...", "status": "..." },
"account_listing": { "id": "...", "status": "...", "tiktok_url": "..." },
"videos": [
{ "id": "...", "position": 1, "status": "...", "tiktok_url": "..." }
],
"order": { "id": "...", "status": "..." }
}
Notes:
- When a bundle is created with
videos_quantity > 0, you will seeposition: 1..Npre-created invideoswith statuspendingbefore you configure them.
Example:
curl -s -H "X-API-Key: $API_KEY" "https://api.tokportal.com/bundles-state?bundle_id=$BUNDLE_ID"