GET
/
users
/
external
/
{external_user_id}
.json
curl -X GET \
-H "QB-Token: bdbb2bd5abb81b1d7fe7be03db9305b46e012bba" \
https://api.quickblox.com/users/external/133712.json
{
  "user": {
    "id": 96831397,
    "full_name": "Jen Lesser",
    "email": "jen@gmail.com",
    "login": "Jen",
    "phone": "+1331234215",
    "website": "https://mysite.com",
    "created_at": "2019-08-29T19:15:17Z",
    "updated_at": "2019-08-29T19:15:17Z",
    "last_request_at": null,
    "external_user_id": 133712,
    "facebook_id": "1338866",
    "twitter_id": "1339366",
    "blob_id": null,
    "custom_data": null,
    "age_over16": true,
    "allow_statistics_analysis": true,
    "allow_sales_activities": true,
    "parents_contacts": "",
    "user_tags": "android"
  }
}

Recipes

Query Parameters

external_user_id
integer
required

ID of the user in the external system .

Headers

QB-Token
string
required
A user session token. See our Authentication page to learn more about the session token.
Authorization
string
default:"ApiKey {your_api_key}"
required
API key from Dashboard. Expected format: ApiKey {your_api_key}. Must be used either QB-Token or Authorization.

Responses

curl -X GET \
-H "QB-Token: bdbb2bd5abb81b1d7fe7be03db9305b46e012bba" \
https://api.quickblox.com/users/external/133712.json
{
  "user": {
    "id": 96831397,
    "full_name": "Jen Lesser",
    "email": "jen@gmail.com",
    "login": "Jen",
    "phone": "+1331234215",
    "website": "https://mysite.com",
    "created_at": "2019-08-29T19:15:17Z",
    "updated_at": "2019-08-29T19:15:17Z",
    "last_request_at": null,
    "external_user_id": 133712,
    "facebook_id": "1338866",
    "twitter_id": "1339366",
    "blob_id": null,
    "custom_data": null,
    "age_over16": true,
    "allow_statistics_analysis": true,
    "allow_sales_activities": true,
    "parents_contacts": "",
    "user_tags": "android"
  }
}