/payment-terminals/v1/payments
This endpoint retrieves a list of all payments available to the authenticated user.
params
object (PaymentQuery)
skip
string
Number of documents to skip when fetching the result.
limit
string
The maximun number of availiable documents in the response.
networkId
string
The network associated with the payment object.
provider
string
The provider of the payment object.
assetId
string
The assetId of the charging device associated with this payment object.
connectorId
string
The connector Id of the charging device associated with this payment object.
startIsoTimestamp
string
The starting datetime applied to this query.
endIsoTimestamp
string
The ending datetime applied to this query.
A list of payment objects as the result of the query
{
"data": {
"hasMore": true,
"items": [
{
"provider": "PAYTER",
"providerRefId": "string",
"committedAmountInCent": 123.0,
"currency": "USD",
"sessionId": "string",
"networkId": "string",
"assetId": "string",
"connectorId": 123.0,
"createdAt": "2023-06-07T17:32:28Z",
"updatedAt": "2023-06-07T17:32:28Z"
}
]
}
}
Was this page helpful?