cURL
curl --request POST \ --url https://developer.tempestdx.com/api/v1/projects.list \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "next": "<string>" } '
{ "projects": [ { "id": "<string>", "name": "<string>", "organization_id": "<string>", "type": "<string>", "created_at": "2023-11-07T05:31:56Z", "from_recipe": "<string>", "published": true, "team_id": "<string>", "updated_at": "2023-11-07T05:31:56Z" } ], "next": "<string>" }
Retrieve a paginated list of projects.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Pagination cursor for the next page of results
Projects retrieved successfully
List of projects for requested page
Show child attributes
Internal identifier of the project.
The name of the project.
Organization identifier the project belongs to.
The type of the project.
Timestamp when the project was created.
ID of the recipe that was used to create the project.
Whether the project is published.
Team identifier the project belongs to.
Timestamp when the project was last updated.
The next page token for pagination.
Was this page helpful?