cURL
curl --request GET \ --url {protocol}://{domain}/api/profile \ --header 'Authorization: Bearer <token>'
{ "user": { "id": "<string>", "email": "jsmith@example.com", "name": "<string>", "picture": "<string>" }, "client": { "clientId": "<string>", "name": "<string>" }, "scopes": [ "<string>" ] }
Get user profile information via OAuth2 authentication
OAuth2 authorization code flow with PKCE support. Supports scopes: read, write, mcp, integration, oauth
User profile data
The response is of type object.
object
Was this page helpful?