Projects
API Reference - Projects resource
This is an object representing your Currents project. You can retrieve the list of projects for your organization, get specific project details, and retrieve the list of runs for a project.
List the projects associated with your organization
GET
v1/projects
Query Parameters
Name | Type | Description |
---|---|---|
limit | 1-50 | Pagination limit 1-50. Default 10. |
starting_before | String | Pagination cursor. See Pagination |
ending_after | String | Pagination cursor. See Pagination |
Get project item
GET
v1/projects/:projectId
Path Parameters
Name | Type | Description |
---|---|---|
projectId* | String | Project ID |
List the runs associated with the project
GET
v1/projects/:projectId/runs
Path Parameters
Name | Type | Description |
---|---|---|
projectId* | String | Project ID |
Query Parameters
Name | Type | Description |
---|---|---|
limit | 1-50 | Pagination limit 1-50. Default 10. |
starting_before | String | Pagination cursor. See Pagination |
ending_after | String | Pagination cursor. See Pagination |
Get project insights - aggregated metrics for runs, spec files and tests
GET
v1/projects/:projectId/insights
Path Parameters
Name | Type | Description |
---|---|---|
projectId* | String | Project ID |
Query Parameters
Name | Type | Description |
---|---|---|
date_start* | String | ISO Date format indicating the start date for the query |
date_end* | String | ISO Date format indicating the end date for the query |
resolution | 1w | 1d | Aggregation resolution. Valid values are "1w" or "1d" |
tags[] | String | List of tags for filtering the query. To provide multiple values, use |
branches[] | String | List of branches for filtering the query. |
Last updated