API Management
Using the API
How to make basic calls to packaged APIs
Making basic calls
In order to make actual POST / GET etc. calls to your published APIs, you will need to retrieve the base url from the operations section:
It is not currently possible to whitelabel the base url for your API management projects
Then you can make any external calls by appending the endpoint path onto the base url:
Authenticating calls
To authenticate your calls you will need a client-associated token.
this can then be passed as a bearer with any API calls, i.e.:
{
"Authorization": "Bearer 39e8fh3rfxxxxxxxxxxd9df2e"
}