HYBRID MLM SOFTWARE
  1. Profile
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. Profile

Modify User Profile Information

Developing
POST
https://api-demo.hybridmlm.io/rest/api
Welcome to the Update Profile API documentation! . The Update Profile endpoint allows users to modify their profile information. This can include personal details such as name, email, or any other relevant information associated with their account.

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="updateProfile"' \
--form 'params[firstname]="jishnuraj"' \
--form 'params[lastname]="raj"' \
--form 'params[email]="jishnu@gmail.com"' \
--form 'params[phone]="9896574264"' \
--form 'params[dob]="2-11-2000"' \
--form 'params[gender]="F"' \
--form 'params[address]="nestvilla"' \
--form 'params[country_id]="5"' \
--form 'params[state_id]="1"' \
--form 'params[city]="wscstreet"' \
--form 'params[zip_code]="664578"' \
--form 'params[password]="12345678"' \
--form 'params[about_me]="jishnu"' \
--form 'params[facebook]="jishnu faceboook"' \
--form 'params[twitter]="jishnu twitter"' \
--form 'params[linked_in]="jishnu linked_in"' \
--form 'params[instagram]="jishnu instagram"'
Response Response Example
200 - Success
{
    "status": true,
    "data": {
        "personal": {
            "username": "jishnu",
            "firstname": "jishnu raj",
            "lastname": "raj",
            "email": "jishnu@gmail.com",
            "phone": "9896574264",
            "gender": "F",
            "address": "nest villa",
            "state": "Andaman and Nicobar Islands",
            "country": "Andorra",
            "city": "wsc street",
            "zip_code": "664578"
        },
        "social": {
            "aboutMe": "jishnu",
            "facebook": "jishnu faceboook",
            "twitter": "jishnu twitter",
            "linkedIn": "jishnu linked_in",
            "instagram": "jishnu instagram"
        }
    },
    "message": {
        "success": [
            "Profile Updated Successfully"
        ]
    }
}
Modified at 2025-04-03 05:10:24
Previous
Retrieves User Profile Information
Next
Fetch Dashboard Data
Built with