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
      POST
    • 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

Create User

POST
https://api.main.xleadfunnel.com/v1/account-users/create-user
Create a user within the funnel system.
Each user is identified by either his email or mobile. If the user already exists in database, the system will not allow to add.

Request

Body Params application/json

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

}

// Example 2 – Add user with firstname, lastname
{
    "funnel_page_id": "64f5313f35e6a55c52d1fcb",
    "firstname": "Peter Chan",
    "lastname": " Chan",
    "country_code": "852",
    "mobile": "98765432"
}

Responses

🟢200Success
application/json
Body

Examples
{
    "rc": 100,
    "rm": "User has successfully been created",
    "user_id": "63aadd3754bd917du93l2w"
}
Modified at 2025-07-04 08:38:14
Previous
Get User ID
Next
Update User
Built with