curl --request GET \
--url https://app.enzo.health/api/v1/workflows \
--header 'Authorization: Bearer <token>'
{
"workflows": [
{
"name": "<string>",
"icon": "<string>",
"id": "<string>",
"publishedWorkflowId": "<string>"
}
]
}
curl --request GET \
--url https://app.enzo.health/api/v1/workflows \
--header 'Authorization: Bearer <token>'
{
"workflows": [
{
"name": "<string>",
"icon": "<string>",
"id": "<string>",
"publishedWorkflowId": "<string>"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful response
The response is of type object
.