POST
/
projects.get
curl --request POST \
  --url https://developer.tempestdx.com/api/v1/projects.get \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>"
}'
{
  "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"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
id
string
required

The unique identifier of the object.

Response

200
application/json
Project details retrieved successfully
id
string
required

Internal identifier of the project.

name
string
required

The name of the project.

organization_id
string
required

Organization identifier the project belongs to.

type
string
required

The type of the project.

created_at
string

Timestamp when the project was created.

from_recipe
string

ID of the recipe that was used to create the project.

published
boolean

Whether the project is published.

team_id
string

Team identifier the project belongs to.

updated_at
string

Timestamp when the project was last updated.