GET/api/me/emailAuthenticatedscope:email

My email address

Only tokens whose `scope` claim includes `email` may read the address; tokens without a scope claim are refused with 403 insufficient_scope.

operationId get_api_me_emailAccount

Authentication & permissionsAuthenticated

Any authenticated user

Accepted credentials
Who may call
Any authenticated user
Required scopes
email

The token's scope claim must include every scope listed; administrators get no bypass.

Responses

application/json
PropertyTypeDescription
email*string | null | null
JSONExample
"email""string"

Example request

bashcurl
curl -X GET 'https://example-nextjs-resource-server.schemavaults.com/api/me/email' \
  -H 'Authorization: Bearer <access_token>'