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 
Authorization token in Bearer format. Example: Bearer dvakycjgw8liyd278y
Default Response
Bad Request. Wrong/Invalid params format.
UnAuthorized request. Invalid/Expired token
Forbidden Request. Action not allowed or Rate Limit exhausted.
Server Error.
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
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
    }
  }
}{
    "message": "Bad Request. Wrong/Invalid params format.",
    "statusCode": 400 
}{
    "message": "UnAuthorized request. Invalid/Expired token",
    "statusCode": 401
}{
    "message": "Forbidden Request. Action not allowed or Rate Limit exhausted.", 
    "statusCode": 403
}{
    "message": "Internal Server Error",
    "statusCode": 500
}Last updated
