HYBRID MLM SOFTWARE
  1. Register
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
      POST
    • Fetch Wallet Balance
      POST
    • Initiate Funds Transfer
      POST
    • Retrieve Transaction Operations
      POST
    • Retrieve User Transactions
      POST
  • 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
    • Reply Mail
    • Retrieve Inbox Mails
    • Retrieve Send Mails
    • Star Mail
    • UnStar Mail
    • Retrieve Starred Mail
    • Retrieve Trashed Mail
    • Delete Mail
  1. Register

User Registration

Developing
POST
https://api-demo.hybridmlm.io/rest/public_api
register
Welcome to the User Registration API documentation! This API provides endpoints for seamless user registration within your applications. By integrating these endpoints, you can allow users to create accounts quickly and efficiently, enabling them to access your platform's features and services.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-demo.hybridmlm.io/rest/public_api' \
--form 'purpose="register"' \
--form 'params[sponsor]="admin"' \
--form 'params[username]="jakson"' \
--form 'params[email]="jakson@gmail.com"' \
--form 'params[password]="123456"' \
--form 'params[phone]="9876543288"' \
--form 'params[country_id]="101"' \
--form 'params[state_id]="5"' \
--form 'params[confirm_password]="123456"'
Response Response Example
200 - Success
{
  "status": true,
  "data": {
    "username": "nelson",
    "email": "nelson@gmail.com",
    "phone": "9876543288",
    "member_id": "HBD00214",
    "status": true,
    "updated_at": "2024-05-22T05:51:02.000000Z",
    "created_at": "2024-05-22T05:51:02.000000Z",
    "id": 214
  },
  "message": {
    "success": [
      "Registered Successfully"
    ]
  }
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params multipart/form-data
purpose
string 
required
Example:
register
params[sponsor]
string 
required
Example:
admin
params[username]
string 
required
Example:
jakson
params[email]
string 
required
Example:
jakson@gmail.com
params[password]
string 
required
Example:
123456
params[phone]
number 
required
Example:
9876543288
params[country_id]
integer 
required
You will get country_id from Fetch Country List Api
Example:
101
params[state_id]
integer 
required
You will get state_id from Fetch State List Api
Example:
5
params[confirm_password]
string 
required
Example:
123456

Responses

🟢200Success
application/json
Body
object {0}
🟢200OK
🟠422Parameter Error
Modified at 2025-03-26 11:02:20
Previous
Sponsor Verification
Next
Retrieves User Profile Information
Built with