Skip to main content
GET
/
v1
/
ui
/
customers
/
me
Get current customer profile
curl --request GET \
  --url https://api.example.com/v1/ui/customers/me
{
  "id": "<string>",
  "email": "<string>",
  "name": "<string>",
  "type": "customer",
  "emailVerified": true,
  "authProvider": "google",
  "providerId": "<string>",
  "preferences": {},
  "roles": [
    "<string>"
  ]
}

Response

Customer profile retrieved successfully

id
string
email
string
name
string
type
string
Example:

"customer"

emailVerified
boolean
authProvider
string
Example:

"google"

providerId
string
preferences
object
roles
string[]