1. ACCOUNT USERS
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. ACCOUNT USERS

Create User

POST
https://api.main.xleadfunnel.com/v1/account-users/create-user
To create a new user within the funnel system.
Each user must be uniquely identified by either his email or mobile. If a user with the same identifier already exists, the creation request will be rejected.
During creation, the system strictly accepts below reserved fields; any extra fields in the payload will be automatically ignored.

Request

Body Params application/json

Examples
// Add user with fullname, email, source, tags and assign to target audience (受眾包) 
{
    "name": "Peter Chan",
    "email": "peter.chan7@gmail.com",
    "source": "FB",
    "tags": [
        "音樂",
        "旅遊",
        "跑步"
    ],
    "ta_lists": [
        "65d546e50d23ae244f0860e0"
    ]
}

Responses

🟢200Success
application/json
Bodyapplication/json

Examples
{
    "rc": 100,
    "rm": "User has successfully been created",
    "user_id": "63aadd3754bd917du93l2w"
}
Modified at 2026-07-27 03:26:31
Previous
Get User ID
Next
Update User
Built with