/payment-terminals/v1/paymentsThis endpoint retrieves a list of all payments available to the authenticated user.
paramsobject (PaymentQuery)skipstringNumber of documents to skip when fetching the result.
limitstringThe maximun number of availiable documents in the response.
networkIdstringThe network associated with the payment object.
providerstringThe provider of the payment object.
assetIdstringThe assetId of the charging device associated with this payment object.
connectorIdstringThe connector Id of the charging device associated with this payment object.
startIsoTimestampstringThe starting datetime applied to this query.
endIsoTimestampstringThe 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?