Making API calls

Making basic calls
Copy

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
Copy

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.:

1
{
2
"Authorization": "Bearer 39e8fh3rfxxxxxxxxxxd9df2e"
3
}