To access all Perform & Engage 365 APIs, the client will require credentials which consist of a client username and client secret.
These are issued by our Customer Success team, contact you allocated Customer Success Partner to obtain details for your Organisation. These will only be issued to administrators.
To send a request to an of the Perform & Engage 365 APIs you must obtain a token using the client credentials.
Tokens may need to be refreshed on a regular basis, the same method for obtaining an auth token can be used for refreshing the token.
POST: /obtainauthtoken/
Once you have your client credentials you can obtain a token using the this POST method.
Request
{
username: string,
password: string
}
Response
{
token: string
}