Dashboard Stats
The following API return you the the balance stats & Daily order stats .
Daily Order Stats:
Amount Processed: Total sales amount for current day
Keys Processed: Total keys sold today
Orders Processed: Total orders processed today
Products Sold: Number of unique products sold today
Balance Data:
totalEarnings: Total Earnings (Withdrawable balance + Balance on hold + Refunds + Total Withdrawn)
onHoldBalance: Amount on hold for +7 days after the sale.
withdrawalBal: Amount available for withdrawal
refundedBal: Amount refunded so far
totalWithdrawn: Amount withdrawn so far
get
Header parameters
AuthorizationstringRequired
Authorization token in Bearer format. Example: Bearer dvakycjgw8liyd278y
Responses
200
Default Response
application/json
400
Bad Request. Wrong/Invalid params format.
application/json
401
UnAuthorized request. Invalid/Expired token
application/json
403
Forbidden Request. Action not allowed or Rate Limit exhausted.
application/json
500
Server Error.
application/json
get
GET /api/seller/legacy/dashboard HTTP/1.1
Host: services.driffle.com
Authorization: text
Accept: */*
{
"message": "text",
"statusCode": 1,
"data": {
"dailyOrdersData": [
{
"day": "text",
"amountProcessed": 1,
"keysProcessed": 1,
"ordersProcessed": 1,
"productsSold": 1
}
],
"balanceData": {
"totalBal": 1,
"onHoldBal": 1,
"withdrawalBal": 1,
"refundedBal": 1,
"totalWithdrawn": 1,
"totalEarnings": 1,
"totalVatAmount": 1,
"totalUnfulfilledSaleFee": 1
}
}
}
GET
/dashboard
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Response
{
"message": "string",
"statusCode": 200,
"data": {
"dailyOrdersData": [
{
"day": "string",
"amountProcessed": 0,
"keysProcessed": 0,
"ordersProcessed": 0,
"productsSold": 0
}
],
"balanceData": {
"totalBal": 0,
"onHoldBal": 0,
"withdrawalBal": 0,
"refundedBal": 0,
"totalWithdrawn": 0,
"totalEarnings": 0,
"totalVatAmount": 0,
"totalUnfulfilledSaleFee": 0
}
}
}
Last updated