X Lead Main
  1. FUNNEL PAGE 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. FUNNEL PAGE USER

Create User

POST
https://api.main.xleadfunnel.com/v1/funnel-users/create-user
Add a user to a particular page of a funnel, in order to join an event or signup for a campaign.
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 to join a particular form with full name and source
{
    "funnel_page_id": "64f5313f35e6a55c52d1fcb",
    "name": "Peter Chan",
    "email": peter.chan7@gmail.com,
    "source": "FB"
 
}

// Example 2 – Add to join a particular form with firstname and 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 2024-04-04 04:32:06
Previous
Get User (Coming Soon)
Built with