Projects

Project endpoints let you create and manage feedback streams within an organization.

All endpoints in this section use JSON and return a response envelope with success and data fields. Authenticated routes require the Authorization: Bearer <api_key>header.

List projects

Return every project that belongs to the organization.

GET/api/v1/{organizationId}/projects
Authenticated

Response

Create project

Create a new project and automatically add all organization users.

POST/api/v1/{organizationId}/projects
Authenticated

Request body

Response

Get project

Retrieve details for a single project.

GET/api/v1/{organizationId}/projects/{projectId}
Authenticated

Response

Update project

Rename a project or update its rate limiting flag.

PATCH/api/v1/{organizationId}/projects/{projectId}
Authenticated

Request body

Response

Delete project

Remove a project and its related feedback.

DELETE/api/v1/{organizationId}/projects/{projectId}
Authenticated

Response