Changes to Application-Only Access Tokens

Starting 7/10/2022, the endpoint used to retrieve Application-Only access tokens (https://emailer.emfluence.com/login/oauth/applicationAccessToken) will no longer be available.

Retrieving Application-Only access tokens has been deprecated. If your application currently uses the https://emailer.emfluence.com/login/oauth/applicationAccessToken endpoint to retrieve Application-Only access tokens, the only necessary change is to stop making those requests. Your existing Application-Only access token will continue to work.

Please contact support for assistance.

Changes to How Access Tokens Are Passed With Requests

Starting 7/10/2022, all requests must pass the access token in the Authorization header.

Passing access tokens in the request body or querystring has been deprecated. If your application currently authenticates using one of these methods, it will need to be changed to pass the access token in the Authorization header.

Please contact support for assistance.

Valid: Pass Access Token in the Authorization Header

GET
/helper/ping
cURL
Copy
Response Data

Invalid: Pass Access Token in the Querystring Deprecated

GET
/helper/ping?accessToken=3BC90A14-6647-479D-AEAF-52F05ED5EAFE
cURL
Copy
Response Data

Invalid: Pass Access Token in the Request Body Deprecated

POST
/helper/ping
cURL
Copy
Response Data