List
List disputes
get/v1/disputes
List disputes.
Query Parameters
beginstring
optional
Date string in RFC 3339 format. Only entries created after the specified time will be included. UTC time zone.
formatdate-time
endstring
optional
Date string in RFC 3339 format. Only entries created before the specified time will be included. UTC time zone.
formatdate-time
ending_beforestring
optional
A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.
page_sizenumber
optional
Page size (for pagination).
maximum100
minimum1
starting_afterstring
optional
A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.
statusenum
optional
Accepts one of the following: "ARBITRATION", "CASE_CLOSED", "CASE_WON", 5 more
List disputes of a specific status.
transaction_tokensarray of string
optional
Transaction tokens to filter by.
Returns
dataarray of tokenstringamountnumberarbitration_datestringcreatedstringcustomer_filed_datestringcustomer_notestringnetwork_claim_idsarray of stringnetwork_filed_datestringnetwork_reason_codestringprearbitration_datestringprimary_claim_idstringreasonenumrepresentment_datestringresolution_datestringresolution_notestringresolution_reasonenumstatusenumtransaction_tokenstringDispute
has_moreboolean
More data exists.
Request example Request
curl https://api.lithic.com/v1/disputes \
-H "Authorization: $LITHIC_API_KEY"
200 Example
{
"data": [
{
"token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"amount": 0,
"arbitration_date": "2019-12-27T18:11:19.117Z",
"created": "2019-12-27T18:11:19.117Z",
"customer_filed_date": "2019-12-27T18:11:19.117Z",
"customer_note": "customer_note",
"network_claim_ids": [
"string"
],
"network_filed_date": "2019-12-27T18:11:19.117Z",
"network_reason_code": "network_reason_code",
"prearbitration_date": "2019-12-27T18:11:19.117Z",
"primary_claim_id": "primary_claim_id",
"reason": "ATM_CASH_MISDISPENSE",
"representment_date": "2019-12-27T18:11:19.117Z",
"resolution_date": "2019-12-27T18:11:19.117Z",
"resolution_note": "resolution_note",
"resolution_reason": "CASE_LOST",
"status": "ARBITRATION",
"transaction_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"
}
],
"has_more": true
}