Skip to content

api_creators_create

POST
/api/creators/
curl --request POST \
--url https://example.com/api/creators/ \
--header 'Authorization: <Authorization>' \
--header 'Content-Type: application/json' \
--data '{ "email": "hello@example.com", "display_name": "example", "plan": "free", "credits": 1 }'

Manage creators.

object
id
required
string format: uuid
email
required
string format: email
<= 254 characters
display_name
required
string
<= 100 characters
plan
  • free - Free
  • pro - Pro
  • enterprise - Enterprise
string
Allowed values: free pro enterprise
credits
integer
>= -2147483648 <= 2147483647
created_at
required
string format: date-time
updated_at
required
string format: date-time
Media typeapplication/json
object
id
required
string format: uuid
email
required
string format: email
<= 254 characters
display_name
required
string
<= 100 characters
plan
  • free - Free
  • pro - Pro
  • enterprise - Enterprise
string
Allowed values: free pro enterprise
credits
integer
>= -2147483648 <= 2147483647
created_at
required
string format: date-time
updated_at
required
string format: date-time
Example
{
"plan": "free"
}