List Disputes
Overview
List card dispute. Paging can be applied. 1
Endpoint URL
https://api-s.nolantechnologies.com/v0/banking/disputes?limit=${ limit }&offset=${ offset }
| Parameter Name | Description | Required |
|---|---|---|
limit |
Maximum number of disputes to return | No |
offset |
The number of disputes to skip | No |
Example Request
curl -i -X GET "https://api-s.nolantechnologies.com/v0/banking/disputes?limit=3&offset=1" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Nolan-API-Key: YourNolanApiKey"
Example Response
HTTP/1.1 200 OK
X-Powered-By: Express
Content-Type: application/json; charset=utf-8
Content-Length: 332
ETag: W/"14c-PIXt+3CWLR/8LXvJ5oHPfhWsbyg"
Date: Sat, 23 Sep 2023 20:51:38 GMT
Connection: keep-alive
Keep-Alive: timeout=5
{
"data": [
{
"id": "53",
"customerId": "140930",
"amount": 123,
"description": "sandbox dispute",
"status": "InvestigationStarted",
"createdAt": "2022-09-16T15:32:51.206Z"
}
]
}
-
Read more about this endpoint in the Unit API docs ↩