Dispute Audit Logs¶
Retrieving a Dispute's Audit Log¶
Swagger Page¶
Permission¶
Dispute Management : READ
Example Request¶
curl -X GET 'https://arc-aegis.billtrust.com/dispute/v1/tenants/{tenantId}/disputes/{disputeId}/activity-log' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-H 'X-Billtrust-Api-Key: <API key value>'
Example Response¶
[
{
"tenantId": "{tenantId}",
"disputeId": "{disputeId}",
"userId": "{userId}",
"timeStamp": "2021-03-28T15:20:33.165Z",
"changes": [
{
"action": 1,
"from": "Steve Rogers",
"to": "Tony Stark"
},
{
"action": 3,
"from": "100.50",
"to": "80.50"
}
]
},
...
]
List of Change Actions¶
Action | Description |
---|---|
1 | Assignee Change |
2 | Department Change |
3 | Amount Change |
4 | Reason Change |
5 | Category Change |
6 | Note Added |
7 | Attachment Added |
8 | Attachment Deleted |