Description: Checks if user authorized your authentication request. Poll this until you get a valid status or it fails. Returns authorization token on success - you'll need this for literally everything else.

Path Parameters:

Response:

Response Example (Success):

{
    status: "valid";
    token: "secureUserToken";
}

Response Example (Denied):

{
    status: "denied";
}

Response Example (Error):

{
  "error": {
    "code": "NOT_FOUND",
    "message": "Authorization request with this id does not exists."
  }
}

Error Responses: