curl --request GET \
--url https://core.ravenna.ai/api/workflows \
--header 'x-ravenna-api-token: <api-key>'
{
"workflows": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"collectionId": "<string>",
"author": {
"id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"image": "<string>"
},
"state": "Active",
"reference": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"countOfRuns": 123,
"lastRun": {
"id": "<string>",
"createdAt": "<string>"
}
}
],
"total": 123
}
curl --request GET \
--url https://core.ravenna.ai/api/workflows \
--header 'x-ravenna-api-token: <api-key>'
{
"workflows": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"collectionId": "<string>",
"author": {
"id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"image": "<string>"
},
"state": "Active",
"reference": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"countOfRuns": 123,
"lastRun": {
"id": "<string>",
"createdAt": "<string>"
}
}
],
"total": 123
}
Was this page helpful?