TEASEDocs
API ReferenceVault

Create a content request

Creates a proof or custom content request (chatter to model). Returns the new request id and its initial status. Requires a write-scoped key.

Authorization

bearerAuth
AuthorizationBearer <token>

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

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

POST
/api/admin/requests
curl -X POST "https://example.com/api/admin/requests" \  -H "Content-Type: application/json" \  -d '{    "fan_id": "287413092",    "text": "Need a quick selfie holding today\'s date",    "kind": "proof",    "priority": "urgent",    "operator_id": 12  }'
{  "id": 5012,  "status": "open"}
{  "detail": "Not authenticated"}