Menu

Expand

This documentation is for the SendGrid Web API v2

To access all the latest features and upcoming developments, please see our v3 API.

Rate this page:

Customer Subuser Apps

Setup Customer Subusers' Apps.

List

List all of the available apps.

Note: The name entry is used in all the other API calls to identify an app.

URI Parameter Required Requirements Description
task Yes Must be set to getavailable Retrieve available apps
user Yes Customer subuser must be registered under your account The customer subuser who we will update
method Yes Must be set to apps Allows you to access apps functionality

Call

POST https://api.sendgrid.com/apiv2/reseller.subuserManage.json
POST Data api_user=your_sendgrid_username&api_key=your_sendgrid_password&task=getavailable&method=apps&user=example@example.com

Response

[
    {
        "name": "gravatar",
        "title": "Gravatar",
        "description": "Appends your gravatar to each HTML email.",
        "activated": false
    },
    {
        "name": "clicktrack",
        "title": "Click Tracking",
        "description": "Overwrites every link to track every click in emails.",
        "activated": false
    }
]

Call

POST https://api.sendgrid.com/apiv2/reseller.subuserManage.xml
POST Data api_user=your_sendgrid_username&api_key=your_sendgrid_password&task=getavailable&method=apps&user=example@example.com

Response

<apps>
    <app>
        <name>gravatar</name>
        <title>Gravatar</title>
        <description>Appends your gravatar to each HTML email.</description>
        <activated>0</activated>
    </app>
    <app>
        <name>clicktrack</name>
        <title>Click Tracking</title>
        <description>Overwrites every link to track every click in emails.</description>
        <activated>0</activated>
    </app>
</apps>

Activate App

URI Parameter Required Requirements Description
task Yes Must be set to activate Retrieve available apps
user Yes Customer subuser must be registered under your account The customer subuser who we will update
method Yes Must be set to apps Allows you to access apps functionality
name Yes Must be set to name of the app Name is returned in the List API call above

Call

POST https://api.sendgrid.com/apiv2/reseller.subuserManage.json
POST Data api_user=your_sendgrid_username&api_key=your_sendgrid_password&name=newrelic&method=apps&task=activate&user=example@example.com

Response

{
  "message": "success"
}

Call

POST https://api.sendgrid.com/apiv2/reseller.subuserManage.xml
POST Data api_user=your_sendgrid_username&api_key=your_sendgrid_password&name=newrelic&method=apps&task=activate&user=example@example.com

Response

<result>
   <message>success</message>
</result>

Deactivate App

URI Parameter Required Requirements Description
task Yes Must be set to deactivate Retrieve available apps
user Yes Customer subuser must be registered under your account The customer subuser who we will update
method Yes Must be set to apps Allows you to access apps functionality
name Yes Must be set to name of the app Name is returned in the List API call above

Call

POST https://api.sendgrid.com/apiv2/reseller.subuserManage.json
POST Data api_user=your_sendgrid_username&api_key=your_sendgrid_password&name=newrelic&method=apps&task=deactivate&user=example@example.com

Response

{
  "message": "success"
}

Call

POST https://api.sendgrid.com/apiv2/reseller.subuserManage.xml
POST Data api_user=your_sendgrid_username&api_key=your_sendgrid_password&name=newrelic&method=apps&task=deactivate&user=example@example.com

Response

<result>
   <message>success</message>
</result>

Customize App

These API calls require that settings are passed using POST.

URI Parameter Required Requirements Description
task Yes Must be set to setup Retrieve available apps
user Yes Customer must be registered under your account The customer who we will update
method Yes Must be set to apps Allows you to access apps functionality
name Yes Must be set to name of the app Name is returned in the List API call above
field_name Yes Must be set to a setting field name The fields required for each app to work properly

Call

POST https://api.sendgrid.com/apiv2/reseller.subuserManage.json
POST Data api_user=your_sendgrid_username&api_key=your_sendgrid_password&name=twitter&method=apps&task=setup&user=example@example.com

Response

{
  "message": "success",
  "settings": [
    {
      "field_name": "field_value"
    }
  ]
}

Call

POST https://api.sendgrid.com/apiv2/reseller.subuserManage.xml
POST Data api_user=your_sendgrid_username&api_key=your_sendgrid_password&name=twitter&method=apps&task=setup&user=example@example.com

Response

<filter>
   <field_name>field_value</field_name>
   ...
</filter>

Get Current Settings

URI Parameter Required Requirements Description
task Yes Must be set to getsettings Retrieve available apps
user Yes Customer must be registered under your account The customer who we will update
method Yes Must be set to apps Allows you to access apps functionality
name Yes Must be set to name of the app Name is returned in the List API call above

Call

POST https://api.sendgrid.com/apiv2/reseller.subuserManage.json
POST Data api_user=your_sendgrid_username&api_key=your_sendgrid_password&name=twitter&task=getsettings&user=example@example.com&method=app

Response

{
  "settings": {
      "field_name": "field_value"
    }
}

Call

POST https://api.sendgrid.com/apiv2/reseller.subuserManage.xml
POST Data api_user=your_sendgrid_username&api_key=your_sendgrid_password&name=twitter&task=getsettings&user=example@example.com&method=app

Response

<app>
   <field_name>field_value</field_name>
   ...
</app>
Rate this page:

Need some help?

We all do sometimes. Get help now from the Twilio SendGrid Support Team.

Running into a coding hurdle? Lean on the wisdom of the crowd by browsing the SendGrid tag on Stack Overflow or visiting Twilio's Stack Overflow Collective.

        
        
        

        Thank you for your feedback!

        Please select the reason(s) for your feedback. The additional information you provide helps us improve our documentation:

        Sending your feedback...
        🎉 Thank you for your feedback!
        Something went wrong. Please try again.

        Thanks for your feedback!

        thanks-feedback-gif