GET
/
v4
/
changes
/
{changeId}
curl -X GET "https://api.kadoa.com/v4/changes/123456789" \
-H "x-api-key: YOUR_API_KEY"
{
  "id": "<string>",
  "workflowId": "<string>",
  "data": [
    {}
  ],
  "diff": [
    {
      "count": 123,
      "added": true,
      "removed": true,
      "value": "<string>"
    }
  ],
  "differences": [
    {
      "type": "added",
      "fields": [
        {
          "key": "<string>",
          "value": "<string>",
          "previousValue": "<string>"
        }
      ]
    }
  ],
  "url": "<string>",
  "screenshotUrl": "<string>",
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

Headers

x-api-key
string

API key for authorization

Authorization
string

Bearer token for authorization

Path Parameters

changeId
string
required

ID of the workflow change to retrieve

Response

200
application/json
Workflow change returned successfully
id
string

Unique identifier of the change

workflowId
string

ID of the workflow this change belongs to

data
object[]

Current state of the data after the change

diff
object[]
deprecated

Structured representation of changes with text-based diffing (deprecated, use differences instead)

differences
object[]

Structured representation of changes with object-based diffing

url
string

URL where the change was detected

screenshotUrl
string

URL of the screenshot taken when the change was detected

createdAt
string

Timestamp when the change was created