cURL
curl --request GET \ --url https://api.example.com/api/core/user/current-user \ --header 'Authorization: Bearer <token>'
{ "email": "<string>", "display_name": "<string>" }
Return email and display name for the authenticated user.
Bearer token authentication. Format: 'Bearer '
Successful Response
Response model for current user info
Was this page helpful?