Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
Successful response
curl --request GET \
--url https://app.enzo.health/api/v1/workflows/{workflowId}/webhookBlocks \
--header 'Authorization: Bearer <token>'
{
"webhookBlocks": [
{
"id": "<string>",
"type": "Webhook",
"label": "<string>",
"url": "<string>"
}
]
}
Returns a list of all the webhook blocks that you can subscribe to.
curl --request GET \
--url https://app.enzo.health/api/v1/workflows/{workflowId}/webhookBlocks \
--header 'Authorization: Bearer <token>'
{
"webhookBlocks": [
{
"id": "<string>",
"type": "Webhook",
"label": "<string>",
"url": "<string>"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful response
Show child attributes