Create a new project

Creates a new project within the authenticated user’s organization using the specified name. Projects are isolated environments within your organization, each with their own API keys, webhook configurations, and resources. Use this endpoint to create additional projects for different environments (e.g., development, staging, production) or for separate applications.

Headers

x-api-keystringRequired

Request

This endpoint expects an object.
namestringRequiredformat: "^[a-zA-Z0-9_-]+$">=3 characters<=50 characters
A unique name for your project that follows the required format rules

Response

Project successfully created. Returns the complete project object with generated IDs, webhook secrets, and configuration.
idstring
Unique identifier for the project
org_idstring
Identifier of the organization that owns this project
namestring
Name of the project
emailstringformat: "email"
Email address associated with the project
created_atstring
ISO timestamp when the project was created
updated_atstring
ISO timestamp when the project was last updated
deletedboolean

Whether this project has been soft-deleted

webhook_urlstring or nullformat: "uri"

URL where webhook events will be sent (can be null)

event_webhook_urlstring or nullformat: "uri"

URL where event webhook notifications will be sent (can be null)

webhook_secretstring or null
Secret key used to sign webhook payloads for verification
triggers_enabledboolean or null
Whether triggers are enabled for this project
last_subscribed_atdatetime or null
ISO timestamp when the project last subscribed to updates
is_new_webhookboolean or null
Indicates if the webhook configuration is using the new format

Errors