Skip to content

Update project

PUT
/v1/projects/{id}

Update an existing project. Only provided fields will be updated.

id
required
string format: uuid

Project identifier (UUIDv7)

Example
01935abc-def0-7123-4567-890abcdef012
object
name

Updated project name

string
>= 1 characters <= 255 characters
rate_limit_default

Updated rate limit in requests per minute

integer
>= 1
Examples

Update name only

{
"name": "Renamed Project"
}

Project updated successfully

object
data
object
id

Unique project identifier (UUIDv7)

string format: uuid
Example
01935abc-def0-7123-4567-890abcdef012
tenant_id

Tenant that owns this project

string
Example
tenant_abc123
name

Project name

string
Example
Production Webhooks
status

Project status

string
Allowed values: active suspended deleted
Example
active
rate_limit_default

Default rate limit for this project (requests per minute)

integer
Example
1000
created_at
string format: date-time
Example
2025-12-01T10:00:00Z
meta
object
request_id

Unique identifier for this request (useful for support)

string
Example
req_xyz123

Invalid request

object
error
object
code

Machine-readable error code

string
Example
INVALID_REQUEST
message

Human-readable error message

string
Example
endpoint must be a valid HTTPS URL
meta
object
request_id

Unique identifier for this request (useful for support)

string
Example
req_xyz123
Examples

Endpoint not found

{
"error": {
"code": "ENDPOINT_NOT_FOUND",
"message": "endpoint not found"
},
"meta": {
"request_id": "req_xyz123"
}
}

Unauthorized - Invalid or missing API key

object
error
object
code

Machine-readable error code

string
Example
INVALID_REQUEST
message

Human-readable error message

string
Example
endpoint must be a valid HTTPS URL
meta
object
request_id

Unique identifier for this request (useful for support)

string
Example
req_xyz123
Example
{
"error": {
"code": "UNAUTHORIZED",
"message": "Invalid or missing API key"
},
"meta": {
"request_id": "req_xyz123"
}
}

Resource not found

object
error
object
code

Machine-readable error code

string
Example
INVALID_REQUEST
message

Human-readable error message

string
Example
endpoint must be a valid HTTPS URL
meta
object
request_id

Unique identifier for this request (useful for support)

string
Example
req_xyz123
Example
{
"error": {
"code": "NOT_FOUND",
"message": "Message not found"
},
"meta": {
"request_id": "req_xyz123"
}
}
Personalize Examples

Enter your credentials to populate code examples throughout the docs.