Information for: DEVELOPERS   PARTNERS   SUPPORT

API credentials

To use the API functionality in Campaign Studio, you must configure API settings and then enable API credentials. These configurations are located in two different parts of the UI in Settings.

Configuring API settings

For information about how to configure API settings, see API settings.

For more API Campaign Studio documentation, see:

Enabling API credentials

To enable API credentials:

  1. Log in to Campaign Studio.
  2. Click the Settings icon.
  3. Click API Credentials.
  4. On the API Credentials page, in the drop-down list, select OAuth 2.

Obtaining a new access token

  1. Make a POST to the access token’s endpoint oauth/v2/token using the client_credentials grant type:

    POST /oauth/v2/token
    
    client_id=CLIENT_ID
    
        &client_secret=CLIENT_SECRET
    
        &grant_type=client_credentials
    

    The response returned should be a JSON encoded string:

    {
    
         access_token: "NEW_ACCESS_TOKEN",
    
         expires_in: 3600,
    
         token_type: "bearer",
    
         scope: ""
    
     }