Get balance report
Retrieve the details of your daily Balance Report in a given time.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
fromintegerOptional
Transaction creation date interval in Unix TimeStamp format.
tointegerOptional
Transaction creation date interval in Unix TimeStamp format, max difference with 'from' value 60 days.
pageintegerOptionalDefault:
The page number.
0Responses
200
A paginated list of daily balance reports.
application/json
Responseall of
get
/balance/reportGET /v1/balance/report HTTP/1.1
Host: merchants-api.onekeypayments.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
A paginated list of daily balance reports.
{
"page": 0,
"rows": 2,
"maxRows": 50,
"data": [
{
"idMerchant": 4,
"depositTotal": 12.5,
"cashoutTotal": 0,
"noteTotal": 0,
"settlementTotal": 0,
"cancelledSettlementTotal": 0,
"depositFeeTotal": 0.1,
"netAmount": 12.4,
"totalBalance": 104655.38,
"date": "2020-01-31T00:00:00Z",
"currency": "USD"
}
]
}Last updated
Was this helpful?

