Earnings

File Name : earnings.js File Path : /server/routes/earnings.js This route contains route for fetching various earnings of the delivery user which includes Earned Today, Earned Yesterday, Earned in this week, Earned in this month, Wallet Ballance.

Fetch Earnings

GET /api/earnings/fetchEarnings

Headers

NameTypeDescription

jwtAccessToken

string

Authorization

{
        success: true,
        message: "Found earnings",
        data: { todayEarn, yesterdayEarn, weekEarn, monthEarn, walletBalance }
}

or

{
        success: false,
        message: "error in fetching earnings"
}

Last updated