HYBRID MLM SOFTWARE
  1. Mail
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
      • Show Filtered Earning Report
    • Refferal List
      • Fetch User Referral List
    • Downline List
      • Fetech User Downline List
  • Mail
    • Compose Mail
      POST
    • Reply Mail
      POST
    • Retrieve Inbox Mails
      POST
    • Retrieve Send Mails
      POST
    • Star Mail
      POST
    • UnStar Mail
      POST
    • Retrieve Starred Mail
      POST
    • Retrieve Trashed Mail
      POST
    • Delete Mail
      POST
  1. Mail

Retrieve Inbox Mails

Developing
POST
https://api-demo.hybridmlm.io/rest/api
The Get Inbox Emails API allows developers to programmatically retrieve emails from a user's inbox. This API provides endpoints to fetch email details.

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

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="getInboxMail"' \
--form 'params[offset]="0"' \
--form 'params[limit]="5"'
Response Response Example
{
    "status": true,
    "data": {
        "inboxMail": [
            {
                "mail_id": 1,
                "subject": "Api issues",
                "content": "validation error occur",
                "receiver_name": "jishnu",
                "sender_name": "jishnu",
                "is_starred": 0,
                "created_at": "2024-05-17",
                "updated_at": "2024-05-17"
            },
            {
                "mail_id": 2,
                "subject": "Fund issues",
                "content": "please check in db",
                "receiver_name": "jishnu",
                "sender_name": "jishnu",
                "is_starred": 0,
                "created_at": "2024-05-17",
                "updated_at": "2024-05-17"
            },
            {
                "mail_id": 3,
                "subject": "Api issues",
                "content": "validation error occur",
                "receiver_name": "jishnu",
                "sender_name": "jishnu",
                "is_starred": 0,
                "created_at": "2024-05-17",
                "updated_at": "2024-05-17"
            },
            {
                "mail_id": 4,
                "subject": "fund issue",
                "content": "let me check",
                "receiver_name": "jishnu",
                "sender_name": "jishnu",
                "is_starred": 0,
                "created_at": "2024-05-17",
                "updated_at": "2024-05-17"
            },
            {
                "mail_id": 5,
                "subject": "Api issues",
                "content": "validation error occur",
                "receiver_name": "jishnu",
                "sender_name": "jishnu",
                "is_starred": 0,
                "created_at": "2024-05-22",
                "updated_at": "2024-05-22"
            },
            {
                "mail_id": 6,
                "subject": "Api issues",
                "content": "validation error occur",
                "receiver_name": "jishnu",
                "sender_name": "jishnu",
                "is_starred": 0,
                "created_at": "2024-05-22",
                "updated_at": "2024-05-22"
            },
            {
                "mail_id": 7,
                "subject": "fund issue",
                "content": "let me check",
                "receiver_name": "jishnu",
                "sender_name": "jishnu",
                "is_starred": 0,
                "created_at": "2024-05-22",
                "updated_at": "2024-05-22"
            }
        ]
    },
    "message": {
        "success": "true"
    }
}
Modified at 2025-04-03 05:39:41
Previous
Reply Mail
Next
Retrieve Send Mails
Built with