Retrieve, add, edit, and delete your customers' parse settings.
URI Parameter |
Required |
Requirements |
Description |
task |
Yes |
Must be set to get |
Retrieve Parse settings |
user |
Yes |
Customer must be registered under your account |
The customer who we will update |
method |
Yes |
Must be set to parse |
Allows you to access parse functionality |
POST |
https://api.sendgrid.com/apiv2/reseller.manage.json |
POST Data |
api_user=your_sendgrid_username&api_key=your_sendgrid_password&method=parse&task=get&method=parse&user=eexampexample@example.com |
{
"parse": [
{
"hostname": "www.example.com",
"url": "www.mydomain.com/parse.php",
"spam_check": 1
}
]
}
POST |
https://api.sendgrid.com/apiv2/reseller.manage.xml |
POST Data |
api_user=your_sendgrid_username&api_key=your_sendgrid_password&method=parse&task=get&method=parse&user=eexampexample@example.com |
<parse>
<entry>
<hostname>www.example.com</hostname>
<url>www.mydomain.com/parse.php</url>
<spam_check>1</spam_check>
</entry>
</parse>
URI Parameter |
Required |
Requirements |
Description |
task |
Yes |
Must be set to set |
Set Parse settings |
hostname |
Yes |
No more than 255 characters |
Hostname we will use with your email |
url |
Yes |
|
The parse destination |
user |
Yes |
Customer must be registered under your account |
The customer who we will update |
method |
Yes |
Must be set to parse |
Allows you to access parse functionality |
POST |
https://api.sendgrid.com/apiv2/reseller.manage.json |
POST Data |
api_user=your_sendgrid_username&api_key=your_sendgrid_password&hostname=www.example.com&url=www.mydomain.com/parse.php&spam_check=1&method=parse&task=set&method=parse&user=eexampexample@example.com |
POST |
https://api.sendgrid.com/apiv2/reseller.manage.xml |
POST Data |
api_user=your_sendgrid_username&api_key=your_sendgrid_password&hostname=www.example.com&url=www.mydomain.com/parse.php&spam_check=1&method=parse&task=set&method=parse&user=eexampexample@example.com |
<result>
<message>success</message>
</result>
URI Parameter |
Required |
Requirements |
Description |
task |
Yes |
Must be set to update |
Set Parse settings |
hostname |
Yes |
No more than 255 characters |
Hostname entry you want to update |
url |
Yes |
|
The parse destination |
user |
Yes |
Customer must be registered under your account |
The customer who we will update |
method |
Yes |
Must be set to parse |
Allows you to access parse functionality |
POST |
https://api.sendgrid.com/apiv2/reseller.manage.json |
POST Data |
api_user=your_sendgrid_username&api_key=your_sendgrid_password&hostname=www.example.com&url=www.mydomain.com/parse.php&spam_check=1&method=parse&task=update&user=eexampexample@example.com |
POST |
https://api.sendgrid.com/apiv2/reseller.manage.xml |
POST Data |
api_user=your_sendgrid_username&api_key=your_sendgrid_password&hostname=www.example.com&url=www.mydomain.com/parse.php&spam_check=1&method=parse&task=update&user=eexampexample@example.com |
<result>
<message>success</message>
</result>
URI Parameter |
Required |
Requirements |
Description |
task |
Yes |
Must be set to delete |
Set Parse settings |
user |
Yes |
Customer must be registered under your account |
The customer who we will update |
hostname |
Yes |
Must be the hostname you wish to delete |
The host name you will remove for your customer |
method |
Yes |
Must be set to parse |
Allows you to access parse functionality |
POST |
https://api.sendgrid.com/apiv2/reseller.manage.json |
POST Data |
api_user=your_sendgrid_username&api_key=your_sendgrid_password&hostname=www.example.com&task=delete&method=parse&user=eexampexample@example.com |
POST |
https://api.sendgrid.com/apiv2/reseller.manage.xml |
POST Data |
api_user=your_sendgrid_username&api_key=your_sendgrid_password&hostname=www.example.com&task=delete&method=parse&user=eexampexample@example.com |
<result>
<message>success</message>
</result>
Need some help?
We all do sometimes; code is hard. Get help now from our
support team, or lean on
the wisdom of the crowd browsing the
SendGrid tag
on Stack Overflow.