Skip to main content
PATCH
/
projects
/
{projectId}
cURL
curl --request PATCH \
  --url https://{baseUrl}/{version}/projects/{projectId} \
  --header 'content-type: <content-type>' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "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.

Path Parameters

projectId
string
required

Project ID.

Body

application/json
rateLimit
number
required

Response

200 - application/json

Updated 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