POST
/
recipes.get
curl --request POST \
  --url https://developer.tempestdx.com/api/v1/recipes.get \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>"
}'
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "public": true,
  "published": true,
  "published_at": "2023-11-07T05:31:56Z",
  "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
Recipe details retrieved successfully
id
string
required

Internal identifier of the recipe.

name
string
required

The name of the recipe.

type
string
required

The type of the recipe.

created_at
string

Timestamp when the recipe was created.

public
boolean

Whether the recipe is public.

published
boolean

Whether the recipe is published.

published_at
string | null

Timestamp when the recipe was published.

team_id
string

Team identifier the recipe belongs to.

updated_at
string

Timestamp when the recipe was last updated.