GET
/
v4
/
changes
/
{changeId}
cURL
curl -X GET "https://api.kadoa.com/v4/changes/123456789" \
-H "x-api-key: YOUR_API_KEY"
{
  "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"
}

Authorizations

x-api-key
string
header
required

API key for authentication

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

Workflow change returned successfully

The response is of type object.