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

Compose Mail

Developing
POST
https://api-demo.hybridmlm.io/rest/api
composeMail
The Compose Email API allows developers to programmatically create and send emails from their applications. This API provides endpoints to compose, send, and manage email content.
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 eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiIxNCIsImp0aSI6Ijg1MGIxZWY1OTc2MTg5NWZmNGVkM2U2NGQwMjVlOWIzYjJiMWY4ZTAxMzc2Mjk5NjhlZDZmMzY1MmJmMGY2MDM4YjRkMzQ5ZmQzNTUyZTQ2IiwiaWF0IjoxNzQzNjU2MjQxLjE3MzY5NiwibmJmIjoxNzQzNjU2MjQxLjE3MzY5OCwiZXhwIjoxNzc1MTkyMjQxLjE2NzAyNSwic3ViIjoiMyIsInNjb3BlcyI6WyIqIl19.KHHpL0Ox03qOg02RhbPKC3bXbnPrBEu8pjWtNUOugFGyFGUVF2MLO1qh4fqRelMfWyNrnY9_F6G3e161GOGf8hvO02aPcicbayHzd144lfvUHO3mk6JjcepGIMTqm2wYBJ8EPbIcfeZxWFajWGjGmdfvlKknnHD-rcD1I5j2t9VIbnOy--gSIRqwKxfDVQdAJTTjtayfGOQlKh3a6KL2LBadPU1Oz1N9QpPXUJzLtWSQ5Qi5Y7lpFGLzFTcazO6PvLwbb_qZP1l-g_8_twoG34Wsgy9GUhJCmbAnqISryLiCsWJK52VkP0Texx4K9bBHrN2sS4Ub_qGAVxeOiMgAY-6jb8KPv9CItYqr96Xl-xGSKqxxAL57QbI3dz4Y9qSYi0FvO9eqlIuZf8wY4v0Wky6akotdJGg6L3_Rn7PopYuKB4wKzMLX4bPDfMgzB_dv3Wj2-a7XB8BwZVE0_P5HL4DKwEzbHtzqBHZM8YYKc6YT6hxIv3ZUPZbuikVqlgyQFvmre70wydrQrQKD0VoOSoL4DN5y_y0QHKTd8Igip9vMn-tnxyk0zyjBSKeZq6Dy6zjh205M0JcwtGCY3vkjq66g866a53Xgr386UEMtpYseFl359-pvzN24HOmtAluIhhkay3jIXxjTF5Hukfqr85ptleki2ZjKvWrSI9ztVHQ' \
--form 'purpose="composeMail"' \
--form 'params[subject]="Connect on LinkedIn?"' \
--form 'params[content]="I hope you'\''re doing well.I'\''d like to connect with you on LinkedIn to stay in touch and explore potential collaboration opportunities.Best regards,"' \
--form 'params[recipient]="jishnu"' \
--form 'params[attachment][]=@"MA==/rendy-novantino-NgF--NZcUNE-unsplash.jpg"'
Response Response Example
200 - Success
{
  "status": true,
  "data": {
    "mail": {
      "subject": "Api issues",
      "content": "validation error occur",
      "reply_to": 0,
      "status": 2,
      "updated_at": "2024-05-22T04:43:06.000000Z",
      "created_at": "2024-05-22T04:43:06.000000Z",
      "id": 5
    }
  },
  "message": "Mail send successfully!"
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
Accept
string 
required
Example:
application/json
Authorization
string 
required
Example:
Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiIxNCIsImp0aSI6Ijg1MGIxZWY1OTc2MTg5NWZmNGVkM2U2NGQwMjVlOWIzYjJiMWY4ZTAxMzc2Mjk5NjhlZDZmMzY1MmJmMGY2MDM4YjRkMzQ5ZmQzNTUyZTQ2IiwiaWF0IjoxNzQzNjU2MjQxLjE3MzY5NiwibmJmIjoxNzQzNjU2MjQxLjE3MzY5OCwiZXhwIjoxNzc1MTkyMjQxLjE2NzAyNSwic3ViIjoiMyIsInNjb3BlcyI6WyIqIl19.KHHpL0Ox03qOg02RhbPKC3bXbnPrBEu8pjWtNUOugFGyFGUVF2MLO1qh4fqRelMfWyNrnY9_F6G3e161GOGf8hvO02aPcicbayHzd144lfvUHO3mk6JjcepGIMTqm2wYBJ8EPbIcfeZxWFajWGjGmdfvlKknnHD-rcD1I5j2t9VIbnOy--gSIRqwKxfDVQdAJTTjtayfGOQlKh3a6KL2LBadPU1Oz1N9QpPXUJzLtWSQ5Qi5Y7lpFGLzFTcazO6PvLwbb_qZP1l-g_8_twoG34Wsgy9GUhJCmbAnqISryLiCsWJK52VkP0Texx4K9bBHrN2sS4Ub_qGAVxeOiMgAY-6jb8KPv9CItYqr96Xl-xGSKqxxAL57QbI3dz4Y9qSYi0FvO9eqlIuZf8wY4v0Wky6akotdJGg6L3_Rn7PopYuKB4wKzMLX4bPDfMgzB_dv3Wj2-a7XB8BwZVE0_P5HL4DKwEzbHtzqBHZM8YYKc6YT6hxIv3ZUPZbuikVqlgyQFvmre70wydrQrQKD0VoOSoL4DN5y_y0QHKTd8Igip9vMn-tnxyk0zyjBSKeZq6Dy6zjh205M0JcwtGCY3vkjq66g866a53Xgr386UEMtpYseFl359-pvzN24HOmtAluIhhkay3jIXxjTF5Hukfqr85ptleki2ZjKvWrSI9ztVHQ
Body Params multipart/form-data
purpose
string 
required
Example:
composeMail
params[subject]
string 
optional
Example:
Connect on LinkedIn?
params[content]
string 
required
Example:
I hope you're doing well.I'd like to connect with you on LinkedIn to stay in touch and explore potential collaboration opportunities.Best regards,
params[recipient]
string 
required
Example:
jishnu
params[attachment][]
file 
optional
Example:
MA==/rendy-novantino-NgF--NZcUNE-unsplash.jpg

Responses

🟢200Success
application/json
Body
object {0}
🟠422Parameter Error
Modified at 2025-04-03 05:37:06
Previous
Fetech User Downline List
Next
Reply Mail
Built with