Test the API
Test the NTRMS 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 NTRMS 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 Activity, Event, Customer Type and ID Type lookup APIs.
Done!