Payments
Cryptocurrency Payment assigned to an invoice consist of transaction and conversion when base and quote currency are different.
The Payment Object
id
Number
Unique identifier for the object
transaction
conversion
paymentStatus
String
Payment status
paymentType
String
Payment type
blockExplorerLinkAddress
String
Block explorer address url
blockExplorerLinkHash
String
Block explorer hash url
processingFee
Number
Processing fee
conversionFee
Number
Conversion fee
createdAt
Date
Time at which the object was created
Lists all Payments
GET
/api/v2/payments
Returns a list of previously created Payments. The Payments are returned in sorted order, with the most recent payment appearing first. You can optionally provide parameters to filter out the results by time created.
Query Parameters
from
Date
Filter by created time. We use basic ISO 8601 format for mixed date-time: YYYY-MM-DDThh:mm:ss
to
Date
Filter by created time. We use basic ISO 8601 format for mixed date-time: YYYY-MM-DDThh:mm:ss
page
Number
Current page
Get Payment by id
GET
/api/v2/payments/{id}
Retrieves the details of a Payment that has previously been created. Supply the id and the API will return the corresponding Payment information.
Path Parameters
id*
Number
Unique identifier for the object
Last updated