Skip to main content

Test the API

Test the MPSMS API through the Ping API using a bearer Auth token from the Connect API

Summary

With the JWT token received from the Connect API call, prepare a ping test to the API by providing a name of the requester.

This is a basic hello world test that will return details about the MPSMS app.

Use the following authorization header for the Ping API

Authorization: Bearer <token>

You may add a UUID trackid parameter to the body to track your request

e.g.

{
"name": "Ernie",
"trackid": "d290f1ee-6c54-4b01-90e6-d701748f0851"
}

Note:

Use the same approach to test the Country, Currency and Network lookup APIs.

Done!