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
Example request
{
"name": "my-awesome-project"
}Response
Project successfully created. Returns the complete project object with generated IDs, webhook secrets, and configuration.
Example response
{
"id": "pr_1a2b3c4d5e6f",
"name": "My Awesome Project",
"api_key": "ak_a1b2c3d4e5f6g7h8i9j0"
}