v63

latestOpenAPI 3.0.0Proprietaryraw.githubusercontent.com2026-08-0110571.8 MB
Projects
Organization

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.

post/api/v3.1/org/owner/project/new

Request body

namestring required

A unique name for your project that follows the required format rules

should_create_api_keyboolean

Whether to create an API key for the project. If true, the API key will be created and returned in the response.

Example request

{
  "name": "my-awesome-project"
}

Response

Project successfully created. Returns the complete project object with generated IDs, webhook secrets, and configuration.

idstring projectId required

Unique identifier for the project

namestring

Name of the project

api_keystring nullable required

API key for the project

Example response

{
  "id": "pr_1a2b3c4d5e6f",
  "name": "My Awesome Project",
  "api_key": "ak_a1b2c3d4e5f6g7h8i9j0"
}