Profile endpoint
Profile API được sử dụng để truy xuất userinfo với các scope tương ứng với từng client
/user-management/user-info
GET
https://oauth-qc.vinid.dev/user-management/user-info
Headers
Name
Type
Description
Content-Type
string
application/json
Authentication
string
bearer access_token
{
"data": {
"full_name": "string",
"email": "string",
"phone_number": "string",
"dob": "string",
"gender": "int",
"nationality": "string",
"identity_documents": [
{
"identity_number": "string",
"identity_type": "CMT|HC|CCCD",
"issue_place": "string",
"issue_date": "string",
}
],
"addresses": [
{
"city": "string",
"commune": "string",
"address": "string",
"type": "int",
"district": "string"
}
]
},
"meta": {
"code": 200
}
}

Last updated
Was this helpful?