cURL
curl --request POST \ --url https://developer.tempestdx.com/api/v1/recipes.list \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "next": "<string>" } '
{ "recipes": [ { "id": "<string>", "name": "<string>", "type": "<string>", "created_at": "2023-11-07T05:31:56Z", "public": true, "published": true, "published_at": "2023-11-07T05:31:56Z", "team_id": "<string>", "updated_at": "2023-11-07T05:31:56Z" } ], "next": "<string>" }
Retrieve a paginated list of recipes.
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
Recipes retrieved successfully
List of recipes for requested page
Show child attributes
Internal identifier of the recipe.
The name of the recipe.
The type of the recipe.
Timestamp when the recipe was created.
Whether the recipe is public.
Whether the recipe is published.
Timestamp when the recipe was published.
Team identifier the recipe belongs to.
Timestamp when the recipe was last updated.
The next page token for pagination.
Was this page helpful?