GET
/v1/transfers/{id}/reversalsList reversals for a transfer
Lists reversals associated with a specific transfer. Use limit, starting_after, and ending_before to page through reversals beyond the 10 most recent entries available on the transfer object.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
idstringrequired
The unique identifier of the transfer whose reversals to retrieve.
ending_beforestringoptional
Cursor object ID used to fetch the page before the specified position.
expandarray<string>optional
Fields to expand in the response.
limitintegeroptional
Maximum number of reversals to return, from 1 to 100. Defaults to 10 when omitted.
starting_afterstringoptional
Cursor object ID used to fetch the page after the specified position.
200Returns a paginated list object containing transfer reversal objects in `data`, a `has_more` indicator, the list object type, and the collection URL.
dataarray<TransferReversal>required
Details about each object.
has_morebooleanrequired
True if this list has another page of items after this one that can be fetched.
objectstringrequired
String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
urlstringrequired
The URL where this list can be accessed.
defaultError response.
errorobjectrequired
Error handling
id must identify the transfer whose reversals you want to list. limit must be between 1 and 100, and starting_after or ending_before must contain a valid object ID when used for pagination.