Disputes V2

disputes_v2

Methods

List Disputes -> CursorPage<>
get/v2/disputes

Returns a paginated list of disputes.

query Parameters
account_token: string
Optional
(format: uuid)

Filter by account token.

begin: string
Optional
(format: date-time)

RFC 3339 timestamp for filtering by created date, inclusive.

card_token: string
Optional
(format: uuid)

Filter by card token.

disputed_transaction_token: string
Optional
(format: uuid)

Filter by the token of the transaction being disputed. Corresponds with transaction_series.related_transaction_token in the Dispute.

end: string
Optional
(format: date-time)

RFC 3339 timestamp for filtering by created date, inclusive.

ending_before: string
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_size: number
Optional
(maximum: 100, minimum: 1, default: 50)

Number of items to return.

starting_after: string
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.

Response fields
data: Array<>

Array of dispute objects

has_more: boolean

Whether there are more results available

Request example
200Example
Retrieve A Dispute ->
get/v2/disputes/{dispute_token}

Retrieves a specific dispute by its token.

Domain types

DisputeV2 = { token, account_token, card_token, 11 more... }

The Dispute object tracks the progression of a dispute throughout its lifecycle.