Status codes

Status code Response Reason
200 OK Valid JWT response NA
401 Request missing Authorization Data {
 "error": {
 "code": 401.01,
 "message": "Request missing Authorization Data"
 }
}
Authorization header missing
400 Bad Request {
 "error": {
 "code": 400.01,
 "message": "Missing required fields"
 }
}
Any required attribute is missing such as nonce or subject
401 Unauthorized {
"error": {
 "code": 401.01,
 "message": "Invalid Nonce"
}
}
Same nonce used again. Nonce should be unique for each token request
401 - Invalid Subject or Partner/App not active {
 "error": {
 "code": 401.01,
 "message": "Unauthorized user"
 }
}
Subject is invalid - Subject must be the unique vendor reference id provided by the Guardian Connect API during new partner registration process. All API keys are associated with a given subject and must match for validation to be successful.
App/Partner is invalid or not active - Partner is marked inactive in the system.