UserInfo

Base Path: /userinfo

Version: 1.0.0

The UserInfo API allows you to retrieve claims such as the name, username, and email address, relating to the authenticated end-user. This API is based on the OpenID Connect Core 1.0 specification and returns a subset of the claims defined as part of the OpenID Connect standard claims.

Authorization: OAuth 2.0 Bearer token is required to access the resources of this API. Once signed up, credentials and URL to access the OAuth API can be found on My Apps Page.


Methods

Get User Info

GET /userinfo/

Returns claims about the authenticated end user.

Responses


application/json+fhir

200

The user info was successfully returned


application/json+fhir

500

A server error occurred while processing the request.

Sample Request

curl -X GET "https://api.orionhealth.io/userinfo/" \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <Access Token>'