GET
/
v1
/
user
/
{user_id}
/
profile
curl --request GET \
  --url https://staging.terminal3.io/v1/user/{user_id}/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-token: <x-api-token>'
{
  "data": {
    "profile": {
      "first_name": "<string>",
      "middle_name": "<string>",
      "last_name": "<string>",
      "user_name": "<string>",
      "email_address": "jsmith@example.com",
      "mobile_number": 1,
      "mobile_country_code": "<string>",
      "avatar": "<string>",
      "language_others": [
        "<string>"
      ],
      "residence_country": "<string>",
      "residence_province": "<string>",
      "residence_city": "<string>",
      "gender": "male",
      "date_of_birth": "<string>",
      "language_primary": "<string>",
      "employment_status": "employed",
      "employment_industry": 123,
      "marital_status": "single",
      "education": "doctorate",
      "household_income": "10000-"
    }
  }
}

This API cannot retrieve profiles created by via the Create User API (encrypted from end user).

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-api-token
string
required
x-api-subclient-id
string

Path Parameters

user_id
number
required
Required range: x > 0

Response

200
application/json
Success
data
object
required