1. LEAD FORMS
X Lead Main
  • Overview
  • API Key Integration
  • ACCOUNT
    • Get Account
      GET
  • ACCOUNT USERS
    • List Users
      GET
    • Get User
      GET
    • Get TA Lists
      GET
    • Get Tags
      GET
    • Query Users
      POST
    • Get User ID
      POST
    • Create User
      POST
    • Update User
      POST
    • Delete User
      DELETE
  • LEAD FORMS
    • Build Form
      • Create
      • Clarify
      • Confirm
    • Edit Form
      • Update
    • List Users
      GET
    • Get User
      GET
  1. LEAD FORMS

List Users

GET
https://api.main.xleadfunnel.com/v1/lead-forms/list-users
To get all users who have filled in a form (e.g. lead form, event form, sales form, booking form etc.), it is by batches in terms of page number, sorted by time created.

Request

Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

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-19T19:23:27.273Z"
        },
        {
            "user_id": "6585sc9c2b7c2g96c72bv28f",
            "name": "Mary Chan",
            "email": "mary.chan@gmail.com",
            "country_code": "852",
            "mobile": "98765433",
            "gender": "F",
            "status": "IMP",
            "created": "2023-10-19T02:03:11.265Z"
        }
    ]
}
Modified at 2026-07-20 07:37:28
Previous
Update
Next
Get User
Built with