Add one creator to an agency roster
POST
/creatorsAuthorization
ApiKey AuthorizationBearer <token>
Public API key from creator or agency settings. The complete secret is shown once.
In: header
Header Parameters
Idempotency-Key*string
Unique value up to 128 characters. Matching requests are replayed for 24 hours.
Length
1 <= length <= 128Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
curl -X POST "https://example.com/creators" \ -H "Idempotency-Key: string" \ -H "Content-Type: application/json" \ -d '{ "display_name": "Maria Lopez", "email": "[email protected]", "country": "France", "languages": [ "en", "fr" ], "tags": [ "fashion", "lifestyle" ], "socials": [ { "platform": "instagram", "handle_or_url": "@maria" } ] }'{ "meta": {}, "request_id": "string", "data": { "created": true, "idempotent": true, "creator": { "id": "string", "username": "string", "display_name": "string" }, "media_kit": { "id": "string", "slug": "string" } }}