Skip to main content

Base URL

Base URL for Express Delivery Order API
https://api.mtn.express.ci/client

Authentication

Express Delivery Order API uses Bearer Token authentication. You must include a valid token in the Authorization header of your API requests.

Example

GET /orders HTTP/1.1
Host: api.mtn.express.ci/client
Authorization: Bearer YOUR_ACCESS_TOKEN

How to Obtain an Access Token

The access token is provided by Express. Contact your Express API administrator to receive your access token.

Including the Access Token

Include the access token in the Authorization header for each request to the API. The format should be as follows:
Authorization: Bearer YOUR_ACCESS_TOKEN
Replace YOUR_ACCESS_TOKEN with the actual token you received after authentication.

Example Request

GET /orders HTTP/1.1
Host: api.mtn.express.ci
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
Ensure you keep your access token secure and do not share it with unauthorized parties.