Authenticate to API
Autenticate to the MPSMS API using a basicauth token with the Connect API
Summary
Use the basicAuth token prepared in the authentication step to call the Connect API
Use the following authorization header for the Connect API
Authorization: Basic <token>
You may add a UUID trackid parameter in the body to track your request
e.g.
{
"trackid": "d290f1ee-6c54-4b01-90e6-d701748f0851"
}
This request, if successful, will return a JWT token, referred to hereon as the **bearer token**.
Done!