HYBRID MLM SOFTWARE
  1. Earning Report
HYBRID MLM SOFTWARE
  • Introduction
  • Authorization
    • Login
      • login
    • Forget Password
      POST
  • Register
    • Fetch Country List
      POST
    • Fetch State List
      POST
    • Username Existence Checker
      POST
    • Email Existence Checker
      POST
    • Sponsor Verification
      POST
    • User Registration
      POST
  • Profile
    • Retrieves User Profile Information
      POST
    • Modify User Profile Information
      POST
  • Dashboard
    • Fetch Dashboard Data
      POST
  • Payout
    • Payout Pin
      • Check Payout Pin Status
      • Initiate User Payout Pin Creation
      • Update User Payout Pin
      • Manage Forgotten Payout Pin
    • Payout Accounts
      • Retrieve User Payout Accounts List
      • Retrieve Account Fields Data
      • Register Payout Account For User
      • Delete User Payout Account
    • New payout Request
      • Retrieves Payout Wallets List
      • Initiate New Payout Request
    • Retrieve Payout Gateways
      POST
    • Revoke User Payout Request
      POST
    • Check Payout Status
      POST
    • Retrieve Payout History Data
      POST
  • Wallet
    • Transaction Password
      • Check Transaction Password Status
      • Initiate User Transaction Password
      • Update Transaction Password For User
      • Manage Forgotten Transaction Password
    • Retrieve List Of Wallets
    • Fetch Wallet Balance
    • Initiate Funds Transfer
    • Retrieve Transaction Operations
    • Retrieve User Transactions
  • News
    • Fetch All News
    • Fetch Single News
  • Reports
    • Earning Report
      • Fetch Earning Report Filter Details
        POST
      • Show Filtered Earning Report
        POST
    • Refferal List
      • Fetch User Referral List
    • Downline List
      • Fetech User Downline List
  • Mail
    • Compose Mail
    • Reply Mail
    • Retrieve Inbox Mails
    • Retrieve Send Mails
    • Star Mail
    • UnStar Mail
    • Retrieve Starred Mail
    • Retrieve Trashed Mail
    • Delete Mail
  1. Earning Report

Show Filtered Earning Report

Developing
POST
https://api-demo.hybridmlm.io/rest/api
The Show Filtered Earning Report API allows developers to retrieve earning report data based on specified filters. This API endpoint facilitates the retrieval of earning data , enabling users to analyze and review earnings in accordance with their requirements.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params multipart/form-data

Responses

🟢200Success
application/json
Body

🟠422Parameter Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-demo.hybridmlm.io/rest/api' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--form 'purpose="earningReport"' \
--form 'params[filters][fromDate]="11-05-2024"' \
--form 'params[filters][toDate]=""' \
--form 'params[filters][commission_id]="3"' \
--form 'params[offset]="0"' \
--form 'params[limit]="2"'
Response Response Example
200 - Success
{
    "status": true,
    "data": [
        {
            "date": "11 MAY 2024",
            "amount": "$20.00",
            "description": "Level Commission (Placement Line)",
            "from": "zandy"
        },
        {
            "date": "11 MAY 2024",
            "amount": "$20.00",
            "description": "Level Commission (Placement Line)",
            "from": "nidha"
        }
    ],
    "message": {
        "success": "success"
    }
}
Modified at 2025-04-03 05:34:05
Previous
Fetch Earning Report Filter Details
Next
Fetch User Referral List
Built with