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
should_create_api_keybooleanOptionalDefaults to false
Whether to create an API key for the project. If true, the API key will be created and returned in the response.

Response

Project successfully created. Returns the complete project object with generated IDs, webhook secrets, and configuration.
idstring
Unique identifier for the project
namestring or null
Name of the project
api_keystring or null
API key for the project

Errors