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

Authorizations

x-api-key
string
header
required

Admin API Key.

Path Parameters

projectName
string
required

Project name.

Body

application/json

Response

200
application/json

Updated project.

The response is of type object.