User
Get User Profile (from client)
TERMINAL 3 API
SIGN IN WITH TERMINAL 3
- Getting Started
- Authorization
- User
- User Credential
NOTIFICATION
VERIFIABLE CREDENTIAL SDK
- Getting Started
- Issuer SDK
- Verifier SDK
User
Get User Profile (from client)
This API endpoint retrieves a user’s profile information from the client.
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Required range:
x > 0
Response
200
application/json
Success
Required string length:
1 - 50
Required string length:
1 - 50
Required string length:
1 - 50
Required string length:
3 - 60
Maximum length:
80
Required range:
x > 0
Minimum length:
1
Minimum length:
1
Minimum length:
1
Minimum length:
1
Minimum length:
1
Available options:
male
, female
, other_gender
, unknown_gender
Minimum length:
1
Minimum length:
1
Available options:
employed
, self-employed
, unemployed
, student
, retired
Available options:
single
, married
, divorced
, separated
, widowed
, co-habiting
Available options:
doctorate
, master
, bachelor
, associate
, secondary_school
, primary_school
, no_schooling
Available options:
10000-
, 10000-14999
, 15000-19999
, 20000-39999
, 40000-49999
, 50000-74999
, 75000-99999
, 100000-149999
, 150000-174999
, 175000-199999
, 200000-249999
, 250000+
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-"
}
}
}