POST
/
projects.list
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>",
      "created_at": "2023-11-07T05:31:56Z",
      "from_recipe": "<string>",
      "name": "<string>",
      "organization_id": "<string>",
      "published": true,
      "team_id": "<string>",
      "type": "<string>",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
next
string | null

Pagination cursor for the next page of results

Response

200
application/json
Projects retrieved successfully
projects
object[]
required

List of projects for requested page

next
string
required

The next page token for pagination.