Projects
List projects
Returns every project belonging to the active organization. The response is paginated.
GET
/api/v1/projects
Results are paginated, with a default page size of 25.
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
| page | integer | Optional | The page number to return. Defaults to |
| per_page | integer | Optional | The number of items per page. Defaults to |
| sort_by | string | Optional | The column to sort by. Defaults to |
| sort_order | string | Optional | The direction to sort by. Each endpoint has its own default. |
| include | string | Optional | A comma-separated list of related resources to include in the response. Allowed values: |
Response
Response schema
| Field | Type | Description |
|---|---|---|
| data | Project[] | |
| links | PaginationLinks | |
| meta | PaginationMeta |
The project object
| Field | Type | Description |
|---|---|---|
| id | integer | The unique ID of the project. |
| organization_id | integer | The ID of the organization that owns the project. |
| name | string | The display name of the project. |
| created_at | datetime | When the project was created. |
| updated_at | datetime | When the project was last updated. |