Skip to main content
GET
/
users
/
{user_id}
cURL
curl --request GET \
  --url https://app.fliqr.ai/api/users/{user_id} \
  --header 'X-ACCESS-TOKEN: <api-key>'
{
  "id": 123,
  "page_id": 123,
  "first_name": "<string>",
  "last_name": "<string>",
  "channel": 123,
  "profile_pic": "<string>",
  "locale": "<string>",
  "gender": 123,
  "timezone": 123,
  "last_sent": 123,
  "last_delivered": 123,
  "last_seen": 123,
  "last_interaction": 123,
  "subscribed_date": "<string>",
  "subscribed": 123,
  "tags": [
    {
      "id": 123,
      "name": "<string>"
    }
  ],
  "custom_fields": [
    {
      "id": 123,
      "type": 123,
      "value": "<string>"
    }
  ]
}

Authorizations

X-ACCESS-TOKEN
string
header
required

Path Parameters

user_id
integer
required

Response

successful operation

id
integer<int64>
page_id
integer<int64>
first_name
string
last_name
string
channel
integer

0 - Messenger, 2 - SMS, 5 - WhatsApp, 7 - Google Business Message, 8 - Telegram, 9 - Webchat

profile_pic
string
locale
string
gender
integer

0 - Female, 1 - Male, 2 - Unknown

timezone
integer
last_sent
integer<int64>

Unix timestamp in milliseconds

last_delivered
integer<int64>

Unix timestamp in milliseconds

last_seen
integer<int64>

Unix timestamp in milliseconds

last_interaction
integer<int64>

Unix timestamp in milliseconds

subscribed_date
string

Subscribed date in UTC. Example 2022-10-12 14:40:00

subscribed
integer

1 - Subscribed, 2 - Unsubscribed

tags
object[]
custom_fields
object[]