Customer Subuser Spam Reports
Manage your Customer Subusers' Spam Report records.
URI Parameter
Required
Requirements
Description
user
Yes
Customer subuser must be registered under your account
The customer subuser we are retrieving spam reports from
task
Yes
Must be set to get
This will allow you to retrieve the spam reports for the specified user
date
No
Must be set to 1
Retrieves the timestamps. It will return a date in a MySQL timestamp format - YYYY-MM-DD HH:MM:SS
JSON
XML
POST
https://api.sendgrid.com/apiv2/reseller.manageSubuser.json
POST Data
api_user=your_sendgrid_username&api_key=your_sendgrid_password&method=spamreports&user=example@example.com&task=get&date=
[
{
"email": "emaieexampexample@example.com",
"created": "2009-06-01 19:41:39"
},
{
"email": "emaileexampexample@example.com",
"created": "2009-06-01 19:41:39"
}
]
POST
https://api.sendgrid.com/apiv2/reseller.manageSubuser.xml
POST Data
api_user=your_sendgrid_username&api_key=your_sendgrid_password&method=spamreports&user=example@example.com&task=get&date=
<spamreports>
<spamreport>
<email>emaieexampexample@example.com</email>
<created>2009-06-10 12:40:30</created>
</spamreport>
<spamreport>
<email>emaileexampexample@example.com</email>
<created>2009-06-10 12:40:30</created>
</spamreport>
</spamreports>
Since SendGrid does not deliver to spam reported addresses, users can remove spam reports from their list at any time if re-delivery to a spam reported address is desired.
URI Parameter
Required
Requirements
Description
user
Yes
Customer subuser must be registered under your account
The customer subuser we are retrieving spam reports from
task
Yes
Must be set to delete
This will allow you to delete a spam report for the specified user
email
No
Must be a spam report
You must specify the spam reports to remove
JSON
XML
POST
https://api.sendgrid.com/apiv2/reseller.manageSubuser.json
POST Data
api_user=your_sendgrid_username&api_key=your_sendgrid_password&method=spamreports&user=example@example.com&task=delete&email=spamreport@domain.com
POST
https://api.sendgrid.com/apiv2/reseller.manageSubuser.xml
POST Data
api_user=your_sendgrid_username&api_key=your_sendgrid_password&method=spamreports&user=example@example.com&task=delete&email=spamreport@domain.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.