Skip to content

Fetch the authenticated customer's profile

GET
/api/portal/profile
curl --request GET \
--url https://example.com/api/portal/profile \
--header 'Authorization: Bearer <token>'

Default Response

Media typeapplication/json
object
data
required
object
id
required
string format: uuid
/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/
name
required
string
email
required
string
phone
required
Any of:
string
Examplegenerated
{
"data": {
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"name": "example",
"email": "example",
"phone": "example"
}
}