cURL
curl --request GET \ --url https://api.mtn.express.ci/client/auth/check \ --header 'Authorization: Bearer <token>'
{ "status": "success", "message": "Authenticated" }
Checks if the authentication token is valid and the API is accessible.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Token is valid.
Represents a successful authentication verification response.
Indicates that the token is valid and authentication succeeded.
"success"
Optional message describing the success.
"Authenticated"