Executions
Get all executions
About API Reference
Linked Account
Config
Config Fields
Webhooks
Schedule
Session Token
Cobalt Hosted
Executions
Get all executions
GET
/
api
/
v2
/
public
/
execution
curl --request GET \
--url https://api.gocobalt.io/api/v2/public/execution \
--header 'linked_account_id: <linked_account_id>' \
--header 'x-api-key: <api-key>'
{
"docs":[
{
"_id": "65410cf6cdf931a12d7ab009",
"createdAt": "2023-10-31T14:19:34.788Z",
"name": "Retry for workflow 65200cfd01af0388e905ad92",
"associated_application": "slack",
"status": "ERRORED",
"associated_workflow": "Send message to channel",
"environment": "test",
"config_id": "12345",
"associated_event_id": "6523dfdeffed0fb7e2c3b90e"
}
],
"totalDocs": 1,
"limit": 10,
"totalPages": 1,
"page": 1,
"pagingCounter": 1,
"hasPrevPage": false,
"hasNextPage": false,
"prevPage": null,
"nextPage": null
}
This API retrieves a list of all executions.
Request description
Headers
Unique customer identification id. For Eg: markwood@some_email.com
Response description
Execution Id
Creation time
Execution name
Execution status
Expected values: test
or production
Associated event id
Total number of existing linked accounts
Records per page
Current Page
Total number of existing linked accounts
If the current Page has any previous page
If the current Page has any next page
Previous page number
Next page number
{
"docs":[
{
"_id": "65410cf6cdf931a12d7ab009",
"createdAt": "2023-10-31T14:19:34.788Z",
"name": "Retry for workflow 65200cfd01af0388e905ad92",
"associated_application": "slack",
"status": "ERRORED",
"associated_workflow": "Send message to channel",
"environment": "test",
"config_id": "12345",
"associated_event_id": "6523dfdeffed0fb7e2c3b90e"
}
],
"totalDocs": 1,
"limit": 10,
"totalPages": 1,
"page": 1,
"pagingCounter": 1,
"hasPrevPage": false,
"hasNextPage": false,
"prevPage": null,
"nextPage": null
}
curl --request GET \
--url https://api.gocobalt.io/api/v2/public/execution \
--header 'linked_account_id: <linked_account_id>' \
--header 'x-api-key: <api-key>'
{
"docs":[
{
"_id": "65410cf6cdf931a12d7ab009",
"createdAt": "2023-10-31T14:19:34.788Z",
"name": "Retry for workflow 65200cfd01af0388e905ad92",
"associated_application": "slack",
"status": "ERRORED",
"associated_workflow": "Send message to channel",
"environment": "test",
"config_id": "12345",
"associated_event_id": "6523dfdeffed0fb7e2c3b90e"
}
],
"totalDocs": 1,
"limit": 10,
"totalPages": 1,
"page": 1,
"pagingCounter": 1,
"hasPrevPage": false,
"hasNextPage": false,
"prevPage": null,
"nextPage": null
}