Skip to content
Product Docs

Projects

List Projects
client.Projects.List(ctx, query) (*PaginatedCursor[Project], error)
GET/api/v2/projects
Create Project
client.Projects.New(ctx, params) (*Project, error)
POST/api/v2/projects
Get Project
client.Projects.Get(ctx, projectID, query) (*Project, error)
GET/api/v2/projects/{project_id}
Update Existing Project
client.Projects.Update(ctx, projectID, params) (*Project, error)
PUT/api/v2/projects/{project_id}
Delete Project
client.Projects.Delete(ctx, projectID, body) error
DELETE/api/v2/projects/{project_id}
ModelsExpand Collapse
type Project struct{…}

API response schema for a project.

ID string

The project’s unique identifier.

Name string

The project’s display name.

OrganizationID string

The organization the project belongs to.

CreatedAt TimeOptional

Creation datetime

formatdate-time
IsDefault boolOptional

Whether this project is the default project for its organization.

UpdatedAt TimeOptional

Update datetime

formatdate-time