Delete Auth Token

Deletes (invalidates) the given auth token. Any use of the auth token after a successful return from this API will result in a 403 error code being returned. This is not an authenticated API (as one might think it could be) because if the client has the auth token to include as a URL parameter to make this request then the client could also put that same auth token into an authenticated request (in an HTTP header) and putting all auth APIs centralizes that functionality.

URL format: https://host/upi/auth/{at}
HTTP Method: DELETE
HTTP Headers: x-xloak-k: APIkey
URL Parameters: {at}: at is the auth token to invalidate
Returns: status code 200 if the presented auth ticket is valid and the auth token was successfully invalidated. The returned body is the following JSON: {'message': '', 'result': 'OK'}
status code 403 if there was no auth ticket supplied or if the auth ticket is invalid.