GET
/
dispute
/
list
curl --request GET \
  --url https://api.pushcash.com/dispute/list \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "dispute_0293cj9ru032lisdjow",
      "amount": 10000,
      "currency": "USD",
      "created_at": "2023-05-24T20:36:50.694Z",
      "intent_id": "intent_sandbox_dMggQ93ZYH6DH9LBhVeijE",
      "code": "R01",
      "status": "created"
    }
  ],
  "next_cursor": "vjl8vk3l4o8dhsjlzh=="
}

Authorizations

Authorization
string
header
required

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

Query Parameters

created_at.after
string

Return disputes created after this ISO 8601 timestamp.

created_at.before
string

Return disputes created before this ISO 8601 timestamp.

status
enum<string>[]

Return disputes which match the provided statuses.

code
enum<string>[]

Filter disputes by code. Provide multiple values to query disputes with any of the provided codes.

cursor
string

The cursor for the next page of results to fetch

Example:

"vjl8vk3l4o8dhsjlzh=="

Response

200
application/json

Successful operation

The response is of type object.