Retrieve a personal profile
Retrives personal profile data.
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
- first_name string
First name of the user
- last_name string
Last name of the user
- date_of_birth string
Date of birth
- mobile_phone string
Mobile phone number
address object
Details of the registered address.
address_line1 stringAddress line 1
address_line2 stringAddress line 2
city stringCity
country stringCountry ISO 3166-1 code
region_id numberCountry region id
region_name stringRegion name
region_code stringRegion code
post_code stringPostal code
landline stringLandline number
first_name stringundefined
last_name stringundefined
company stringundefined
country_details object
Country Details
currency stringCurrency ISO 4217 code
iso_code stringCountry ISO code
en_name stringCountry EN name
native_name stringCountry native name
timeoffset_details object
TimeOffset Details
post_code stringPostal code
offset numberUTC offset
dst booleanDaylight Saving Time
state_id stringundefined
- complete boolean
{
"first_name": "string",
"last_name": "string",
"date_of_birth": "string",
"mobile_phone": "string",
"address": {
"address_line1": "string",
"address_line2": "string",
"city": "string",
"country": "string",
"region_id": 0,
"region_name": "string",
"region_code": "string",
"post_code": "string",
"landline": "string",
"first_name": "string",
"last_name": "string",
"company": "string",
"country_details": {
"currency": "string",
"iso_code": "string",
"en_name": "string",
"native_name": "string"
},
"timeoffset_details": {
"post_code": "string",
"offset": 0,
"dst": true
},
"state_id": "string"
},
"complete": true
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Invalid_ Token
- Not_ Authorized_ Token
- Missing_ Token
Schema
- message string
Short description of the error.
- error_code string
Platform code for the error.
{
"message": "string",
"error_code": "string"
}
{
"error_message": "invalid access token",
"error_code": "NOT_AUTHORIZED"
}
{
"error_message": "NOT_AUTHORIZED",
"error_code": "NOT_AUTHORIZED"
}
{
"message": "access token required",
"error_code": "NOT_AUTHORIZED"
}