projects
Create project
Create a project to group deployments and applications under a workspace-scoped slug.
The slug you provide is the stable, caller-defined handle used to reference this project in subsequent operations (get, update, delete). It must be unique within your workspace.
Important: The slug cannot collide with an existing project in your workspace. A duplicate slug returns a 409 conflict.
Required Permissions
Your root key must have the following permission:
- project.*.create_project (to create projects in your workspace)
post/v2/projects.createProject
Request body
Example request
{
"name": "Payments Service",
"slug": "proj_1234abcd"
}Response
Project created successfully. The response contains the project id used to reference it in subsequent operations.
Example response
{
"meta": {
"requestId": "req_123"
},
"data": {
"id": "proj_1234abcd"
}
}