X Lead Main
  1. ACCOUNT USER
X Lead Main
  • Overview
  • API Key Integration
  • ACCOUNT
    • Get Account
      GET
  • ACCOUNT USER
    • Get User List
      GET
    • Get User
      GET
    • Get User ID
      GET
    • Create User
      POST
    • Update User
      POST
    • Delete User
      DELETE
  • FUNNEL PAGE USER
    • Get User List
      GET
    • Get User (Coming Soon)
      GET
    • Create User
      POST
  1. ACCOUNT USER

Get User List

GET
https://api.main.xleadfunnel.com/v1/account-users/get-user-list
To get general information of customers by batches in terms of page number, sorted by time created.
For retrieving full details of a particular user, you may useGet User function to accomplish that.

Request

Query Params
page
integer 
optional
Indicate the starting page number for retrieving user records. Default is 1.
per_page
integer 
optional
Number of records return for that page, maxiumum is 50. Default is 20.

Responses

🟢200Success
application/json
Body
rc
integer 
required
100 : OK
-100 : No users found
rm
string 
required
Return message in details
data
array [object {8}] 
optional
Array of users
user_id
string 
optional
name
string 
optional
email
string 
optional
country_code
string 
optional
mobile
string 
optional
gender
string 
optional
status
string 
optional
created
string 
optional
Example
{
    "rc": 100,
    "rm": "OK",
    "users": [
        {
            "user_id": "6585fc9c2a7c2496c72bx28f",
            "name": "Peter Chan",
            "email": "peter.chan@gmail.com",
            "country_code": "852",
            "mobile": "98765432",
            "gender": "M",
            "status": "IMP",
            "created": "2023-10-19"
        },
        {
            "user_id": "6585sc9c2b7c2g96c72bv28f",
            "name": "Mary Chan",
            "email": "mary.chan@gmail.com",
            "country_code": "852",
            "mobile": "98765433",
            "gender": "F",
            "status": "IMP",
            "created": "2023-10-19"
        }
    ]
}
Modified at 2024-04-04 04:31:20
Previous
Get Account
Next
Get User
Built with