Authentication Errors

Web API methods can produce the following authentication errors.

Errors
Error Description Methods
Access Token expired
Occurs when the token has expired
Example Response:
{
    "fault": {
        "faultstring": "Access Token expired",
        "detail": {
            "errorcode": "keymanagement.service.access_token_expired"
        }
    }
}		
GetPatientInfoAuditable
GetCCDAXml
GetPatients
Invalid access token
Occurs when the token is invalid or empty
Example Response:
{
    "fault": {
        "faultstring": "Invalid access token",
        "detail": {
            "errorcode": "oauth.v2.InvalidAccessToken"
        }
    }
}	
GetPatientInfoAuditable
GetCCDAXml
GetPatients
Invalid client identifier
Occurs when the client_id or client_secret is incorrect
Example Response:
{
    "fault": {
        "faultstring": "Invalid client identifier {0}",
        "detail": {
            "errorcode": "oauth.v2.InvalidClientIdentifier"
        }
    }
}		
AccessToken
Top