How To Use
Our API's follow the RESTful standard and are callable through a service like postman. You can also call our API's via a command line and curl. When you come on as a development partner you should receive a specification that you can reference and import to postman. You will need to set up any environment variables you wish to use in the postman client.
All API's that we currently have deployed or that are ready for partner development require a Subscription key for access. These subscription keys are viewable under your developer profile. Some other endpoints also have authentication requirements of their own and are viewable on the operation details page of the API in question.
Example call and response
curl --location
--request POST 'https://otrmockURL.com/login' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Accept: application/json' \
--header 'Ocp-Apim-Subscription-Key: "String"' \
--header 'Cookie: String ' \
--data-urlencode 'username' \
--data-urlencode 'password'
{"token": "String","type":"String",
"refresh":"String"}