curl --request GET \
--url https://api.sanka.com/v1/public/workflows \
--header 'Authorization: Bearer <token>'{
"data": [
{
"workflow_id": "<string>",
"external_id": "<string>",
"is_trigger_active": true,
"valid_to_run": true,
"title": "<string>",
"description": "<string>",
"status": "<string>",
"trigger_type": "<string>",
"trigger_every": 123,
"updated_at": "<string>"
}
],
"count": 123,
"page": 123,
"limit": 123,
"ctx_id": "<string>"
}curl --request GET \
--url https://api.sanka.com/v1/public/workflows \
--header 'Authorization: Bearer <token>'{
"data": [
{
"workflow_id": "<string>",
"external_id": "<string>",
"is_trigger_active": true,
"valid_to_run": true,
"title": "<string>",
"description": "<string>",
"status": "<string>",
"trigger_type": "<string>",
"trigger_every": 123,
"updated_at": "<string>"
}
],
"count": 123,
"page": 123,
"limit": 123,
"ctx_id": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.