Skip to main content
GET
/
v1
/
disputes
List disputes
curl --request GET \
  --url https://api.ledger.so/v1/disputes \
  --header 'Api-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "transactionId": "<string>",
      "cardId": "<string>",
      "userId": "<string>",
      "rainDisputeId": "<string>",
      "status": "pending",
      "createdAt": 123,
      "updatedAt": 123,
      "object": "dispute",
      "textEvidence": "<string>",
      "resolvedAt": 123
    }
  ],
  "hasMore": true,
  "object": "list",
  "cursor": "<string>"
}

Authorizations

Api-Key
string
header
required

API key for authentication. Get your key from the Dashboard.

Query Parameters

userId
string

Filter by user ID

transactionId
string

Filter by transaction ID

status
enum<string>

Filter by dispute status

Available options:
pending,
inReview,
accepted,
rejected,
canceled
limit
integer
default:20

Number of items per page (max 100)

Required range: 1 <= x <= 100
cursor
string

Pagination cursor from previous response

Response

Dispute list

data
object[]
required
hasMore
boolean
required
object
string
Example:

"list"

cursor
string