Skip to main content
GET
/
auth
/
check
Check Authentication
curl --request GET \
  --url https://api.mtn.express.ci/client/auth/check \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Authenticated"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Token is valid.

Represents a successful authentication verification response.

status
string
required

Indicates that the token is valid and authentication succeeded.

Example:

"success"

message
string

Optional message describing the success.

Example:

"Authenticated"