Get All Payments
GET /v3/payments
Get payments of logged user. Limit
and start
filters can be used.
Name | Type | Description |
---|---|---|
provider | string | Payment provider reference |
limit | integer | |
start | integer | Offset for the limit |
Headers:
Content-Type: application/json
Authentication: Bearer %access_token%
Authentication:
Grant_type: login_info
Scopes: []
Response body:
{
"payments": [
{
"id": 0,
"userId": 0,
"amount": 0,
"currency": "string",
"state": "string",
"created": "2021-10-21T09:16:21.988Z",
"updated": "2021-10-21T09:16:21.988Z",
"expires": "2021-10-21T09:16:21.988Z",
"paymentNo": 0,
"provider": "string",
"description": "string"
}
],
"count": 0
}