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>", "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" } ], "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>
Recipes retrieved successfully
The response is of type object.
object
Was this page helpful?