cURL
curl --request GET \ --url https://{tenantId}.api.nestmed.com/api/v1/auth/userinfo \ --header 'Authorization: Bearer <token>'
{ "userId": "<string>", "email": "<string>", "firstName": "<string>", "lastName": "<string>", "role": "<string>", "clinicianId": "<string>", "agencies": [ { "agencyId": "<string>", "name": "<string>", "role": "<string>" } ], "permissions": [ "<string>" ] }
Retrieve profile information for the currently authenticated user.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
User information.
Show child attributes