HYBRID MLM SOFTWARE
  1. Payout Pin
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
        POST
      • Initiate User Payout Pin Creation
        POST
      • Update User Payout Pin
        POST
      • Manage Forgotten Payout Pin
        POST
    • 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. Payout Pin

Check Payout Pin Status

Developing
POST
https://api-demo.hybridmlm.io/rest/api
This endpoint allows you to check whether a payout PIN is set for a specific user account. A payout PIN is a security measure used to verify the identity of the user before processing payout requests or sensitive operations. By utilizing this endpoint, you can determine whether the user has set up a payout PIN and implement additional security measures as needed.

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="isPayoutPinSet"'
Response Response Example
{
    "status": true,
    "data": {},
    "message": {
        "success": [
            "Payout Pin has been created previously."
        ]
    }
}
Modified at 2025-04-03 05:13:00
Previous
Fetch Dashboard Data
Next
Initiate User Payout Pin Creation
Built with