Skip to main content
POST
/
projects
cURL
curl --request POST \
  --url https://{baseUrl}/{version}/projects \
  --header 'content-type: <content-type>' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "projectName": "<string>",
  "rateLimit": 123
}'
{
  "id": "<string>",
  "projectName": "<string>",
  "apiKey": "<string>",
  "rateLimit": 123,
  "status": "CREATING"
}

Headers

content-type
string
default:application/json
required
x-api-key
string
required

Admin API Key.

Body

application/json
projectName
string

Displayed project name. Note that the supported maximum length is 45.

rateLimit
number

Response

202 - application/json

Created project.

id
string

Project ID.

projectName
string

Project name.

apiKey
string

Project API key.

rateLimit
number

Rate limit.

status
enum<string>

Status

Available options:
CREATING,
ACTIVE,
DELETING