List all payment intents
GET {{baseUrl}}/v1/paymentIntents
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
status | string | Filters by the most recent timeline.status within the payment intent. | |
context | string | Filters by the most recent timeline.context within the payment intent. | |
from | string | Queries items created since the specified date-time (inclusive). | |
to | string | Queries items created before the specified date-time (inclusive). | |
pageBefore | string | A collection ID value used for pagination. |
It marks the exclusive end of a page. When provided, the collection resource will return the next n
items before
the id, with n
being specified by pageSize
.
The items will be returned in the natural order of the collection.
The resource will return the first page if neither pageAfter
nor pageBefore
are specified.
SHOULD NOT be used in conjuction with pageAfter.
|
| pageAfter
| string | | A collection ID value used for pagination.
It marks the exclusive begin of a page. When provided, the collection resource will return the next n
items after
the id, with n
being specified by pageSize
.
The items will be returned in the natural order of the collection.
The resource will return the first page if neither pageAfter
nor pageBefore
are specified.
SHOULD NOT be used in conjuction with pageBefore.
|
| pageSize
| number | | Limits the number of items to be returned.
Some collections have a strict upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used.
If avoided, the collection will determine the page size itself. |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
{"data":[{"id":"513fee57-0557-448d-bee5-32e8e6518f25","amountPaid":{"amount":"0.00","currency":"USD"},"amountRefunded":{"amount":"0.00","currency":"USD"},"settlementCurrency":"USD","paymentMethods":[{"type":"blockchain","chain":"ETH","address":"0xde982c93966731273f730b35967a36d5b9b1c01d"}],"fees":[{"type":"blockchainLeaseFee","amount":"0.00","currency":"USD"}],"timeline":[{"status":"pending","time":"2024-01-17T18:58:59.610789Z"},{"status":"created","time":"2024-01-17T18:58:56.811398Z"}],"createDate":"2024-01-17T18:58:56.810528Z","updateDate":"2024-01-17T18:58:59.608404Z","merchantWalletId":"1000594146","amount":{"amount":"3.14","currency":"USD"},"expiresOn":"2024-01-18T02:58:59.499965Z"}]}