GET
/
v1
/
decisions
/
{id}
/
changelog
/
{revisionId}
Get decision changelog revision
curl --request GET \
  --url https://staging.api.us.aptlydone.com/decision/v1/decisions/{id}/changelog/{revisionId} \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "timestamp": "2025-06-24T10:47:32.804Z",
  "message": "Success",
  "data": {
    "id": "7df90da4-0634-40b9-abf5-6e97a222cfb8",
    "tenantId": "105fa115-52d0-4466-baff-740447a60774",
    "decisionId": "7df90da4-0634-40b9-abf5-6e97a222cfb8",
    "revisionId": "123456",
    "revisionDate": "2024-12-18T09:50:43.338Z",
    "revisedById": "105fa115-52d0-4466-baff-740447a60774",
    "revisedByName": "John Doe",
    "decisionChangelogDetails": [
      {
        "id": "7df90da4-0634-40b9-abf5-6e97a222cfb8",
        "decisionChangelogId": "7df90da4-0634-40b9-abf5-6e97a222cfb8",
        "fieldName": "name",
        "originalValue": "Long-term Investments",
        "updatedValue": "Long-term Investments 1"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required
revisionId
string
required

Query Parameters

tenantId
string
required

Response

200 - application/json

Decision changelog revision details retrieved successfully

The response is of type object.