Payments
payments
get
List of payments
Authorizations
Query parameters
perPageintegerOptionalExample:
Number of items per page
100
pageintegerOptionalExample:
Page number
1
Responses
200
Payments
application/json
Responseany
401
Request is unauthenticated
application/json
get
GET /api/v1/payment/list HTTP/1.1
Host: payrazehq.com
Authorization: YOUR_API_KEY
Accept: */*
{
"items": [
{
"id": 1,
"date": "2024-01-01",
"currency": {
"id": 1,
"name": "Ethereum",
"code": "ETH"
},
"amount": 290887,
"status": "Paid",
"hash": "0x9d83626870913bcffd72e756b6687254b496d28e0bbdafce21c136d62ebe8763"
}
],
"currentPage": 1,
"lastPage": 1,
"itemsPerPage": 100,
"pageItems": 4,
"total": 4,
"timestamp": "2024-05-29, 10:13:54"
}