Skip to main content
POST
/
projects
Create project
curl --request POST \
  --url https://api.surefeedback.com/api/v1/projects \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "<string>",
  "organization_id": "<string>",
  "description": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": "770e8400-e29b-41d4-a716-446655440002",
    "name": "Client Website Redesign",
    "organization_id": "660e8400-e29b-41d4-a716-446655440001",
    "created_at": "2026-03-02T12:00:00Z"
  }
}
Creates a new project in the specified organization.
Requires authentication. The user must be an organization admin or owner.

Request body

name
string
required
Project name. Max 255 characters.
organization_id
string
required
UUID of the organization this project belongs to.
description
string
Optional project description.
{
  "success": true,
  "data": {
    "id": "770e8400-e29b-41d4-a716-446655440002",
    "name": "Client Website Redesign",
    "organization_id": "660e8400-e29b-41d4-a716-446655440001",
    "created_at": "2026-03-02T12:00:00Z"
  }
}