This endpoint represents all payment-related operations that are part of a given transaction.
The operations that can be returned in by this endpoint are:
create_account
payment
path_payment
account_merge
Request
GET /transactions/{hash}/payments{?cursor,limit,order}
Arguments
name |
notes |
description |
example |
hash |
required, string |
A transaction hash, hex-encoded |
6391dd190f15f7d1665ba53c63842e368f485651a53d8d852ed442a446d1c69a |
?cursor |
optional, default null |
A paging token, specifying where to start returning records from. |
12884905984 |
?order |
optional, string, default asc |
The order in which to return rows, “asc” or “desc”. |
asc |
?limit |
optional, number, default 10 |
Maximum number of records to return. |
200 |
Response
This endpoint responds with a list of payments operations that are part of a given transaction. See operation resource for more information about operations (and payment operations).
Possible Errors
- The standard errors.
- not_found: A
not_found
error will be returned if there is no transaction whose ID matches the hash
argument.
在 GitHub 上编辑此页面