GET
/
v4
/
changes
cURL
curl -X GET "https://api.kadoa.com/v4/workflows/changes?workflowIds=123,456&startDate=2024-01-01T00:00:00Z&endDate=2024-03-01T00:00:00Z" \
-H "x-api-key: YOUR_API_KEY"
{
  "timestamp": "2023-11-07T05:31:56Z",
  "changesCount": 123,
  "changes": [
    {
      "id": "<string>",
      "workflowId": "<string>",
      "data": [
        {}
      ],
      "differences": [
        {
          "type": "added",
          "fields": [
            {
              "key": "<string>",
              "value": "<string>",
              "previousValue": "<string>"
            }
          ]
        }
      ],
      "url": "<string>",
      "screenshotUrl": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "totalCount": 123,
    "page": 123,
    "totalPages": 123,
    "limit": 123
  }
}

Authorizations

x-api-key
string
header
required

Headers

x-api-key
string

API key for authorization

Authorization
string

Bearer token for authorization

Query Parameters

workflowIds
string

Comma-separated list of workflow IDs. If not provided, returns changes for all ACTIVE workflows

startDate
string<date-time>

Start date to filter changes (ISO format)

endDate
string<date-time>

End date to filter changes (ISO format)

skip
integer

Number of records to skip for pagination

limit
integer

Number of records to return for pagination

Response

200
application/json

Workflow changes returned successfully

The response is of type object.