List Team Recipe Names V2
Get all recipe names for a team
GET
/
v2
/teams
/{team_id}
/recipes
/names
Header Parameters
Authorization
Requiredstring
Value: "Bearer <token>"; visit the "User Settings" page in the DevZero dashboard to generate a token
Path Parameters
team_id
Requiredstring
ID of team
curl -X GET "https://api.devzero.io/backend/v0/v2/teams/string/recipes/names" \
-H "Authorization: string"
OK
{
"recipe_names": [
{
"id": "string",
"name": "string"
}
]
}