Basic Token Responses

When you attempt to make a request, and your JSON token is incorrect or not in the request at all, you will receive some of the following messages in response.

Token Missing

{
   "status":false,
   "errorCode":"AUTH_TOKEN_ABSENT",
   "message":"Your authentication token is absent from this request."
}

Invalid Token or Improper Formatting

{
   "status":false,
   "errorCode":"AUTH_UNAUTHORIZED_REQUEST",
   "message":"There seems to be something wrong with your authentication token."
}