GET
/
api
/
v2
/
public
/
execution
Get all executions
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

linked_account_id
string
required
Unique customer identification id. For Eg: markwood@some_email.com

Response description

docs
array
totalDocs
integer
Total number of existing linked accounts
limit
integer
Records per page
page
integer
Current Page
pagingCounter
integer
Total number of existing linked accounts
hasPrevPage
boolean
If the current Page has any previous page
hasNextPage
boolean
If the current Page has any next page
prevPage
integer
Previous page number
nextPage
integer
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
}