POST
/
projects
curl --request POST \
  --url https://{baseUrl}/projects \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "projectName": "example-project-name",
  "rateLimit": 10
}'
{
  "id": "example-project-id",
  "projectName": "example-project-name",
  "apiKey": "<API key>",
  "rateLimit": 10,
  "status": "CREATING"
}

Authorizations

x-api-key
string
header
required

Admin API Key.

Body

application/json

Response

202
application/json

Created project.

The response is of type object.