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
      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. FUNNEL PAGE USER

Get User (Coming Soon)

GET
https://api.main.xleadfunnel.com/v1/funnel-page-users/get-user
To get all fields and values that this user has submitted when joining this funnel, query by using his User ID.

Request

Query Params
funnel_page_id
string 
optional
The form that a user joined in.
user_id
string 
optional

Responses

🟢200Success
application/json
Body
rc
integer 
optional
100 : OK
-100 : No such user
rm
string 
optional
Return message in details
data
array [object {12}] 
optional
User data in object format
user_id
string 
optional
name
string 
optional
email
string 
optional
country_code
string 
optional
mobile
string 
optional
gender
string 
optional
address
string 
optional
birthday
object 
optional
source
string 
optional
user_tags
array [object {1}] 
optional
status
string 
optional
created
string 
optional
Example
{
    "rc": 100,
    "rm": "OK",
    "user": [
        {
            "user_id": "65857c9x2bvc2496ca2ba28f",
            "name": "Peter Chan",
            "email": "peter.chan@gmail.com",
            "country_code": "852",
            "mobile": "98765432",
            "gender": "M",
            "address": "Address 123",
            "birthday": {
                "byear": "2000",
                "bmonth": "01",
                "bday": "10"
            },
            "source": "FB",
            "user_tags": [
                {
                    "value": "音樂"
                },
                {
                    "value": "旅遊"
                },
                {
                    "value": "跑步"
                }
            ],
            "status": "IMP",
            "created": "2023-10-19"
        }
    ]
}
Modified at 2024-04-04 04:31:59
Previous
Get User List
Next
Create User
Built with