You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get current Parse settings and create, edit, and delete entries using the Reseller Customer Subuser API (Web API v2).
525
525
526
526
## Statistics
527
527
528
528
SendGrid provides [statistics](https://app.sendgrid.com/statistics/parse_webhook) of how many emails parsed over time. You can specify what is displayed on the graph by adjusting the statistics filters.
529
529
530
-
For more information, please see [Parse Webhook Stats](https://sendgrid.com/docs/Web_API_v3/Stats/parse.html).
530
+
For more information, please see [Parse Webhook Stats](https://sendgrid.com/docs/API_Reference/Web_API_v3/Stats/parse.html).
Copy file name to clipboardExpand all lines: content/docs/for-developers/partners/magento.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ Learn more about your shoppers’ engagement with performance feedback and real-
55
55
* Flexible API and SMTP setup for for easy transactional email Integration.
56
56
* Key email deliverability features including email authentication, reputation monitoring, dedicated IP addresses, and more.
57
57
* Real-time analytics and reporting including opens, clicks, bounces, unsubscribe tracking, and more.
58
-
* Leverage our step-by-step [documentation](https://sendgrid.com/docs) or get quick help from our [24/7 Support Team](https://support.sendgrid.com).
58
+
* Leverage our step-by-step [documentation](https://sendgrid.com/docs/API_Reference) or get quick help from our [24/7 Support Team](https://support.sendgrid.com).
59
59
* This official extension was built for M2 by SendGrid’s dedicated partner-focused teams for continued management and future development.
Copy file name to clipboardExpand all lines: content/docs/for-developers/sending-email/curl-examples.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ curl --request POST \
65
65
66
66
## Scheduling and Cancelling an Email
67
67
68
-
You may schedule an email to be sent up to 72 hours in the future by using the "send_at" parameter. You may cancel this same scheduled email by using the [Cancel Scheduled Sends endpoint](https://sendgrid.com/docs/Web_API_v3/cancel_schedule_send.html).
68
+
You may schedule an email to be sent up to 72 hours in the future by using the "send_at" parameter. You may cancel this same scheduled email by using the [Cancel Scheduled Sends endpoint](https://sendgrid.com/docs/API_Reference/Web_API_v3/cancel_schedule_send.html).
Copy file name to clipboardExpand all lines: content/docs/for-developers/sending-email/how-to-create-a-subuser-with-the-api.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ navigation:
16
16
17
17
## Establish the New Subuser (required)
18
18
19
-
With the [subuser creation API call](http://sendgrid.com/docs/API_Reference/Customer_Subuser_API/subusers.html) you will be able to establish the new subuser's account and profile settings. This call will create the new subuser account, however it does not apply the sending IP for the account, nor does it establish a domain authentication entry or enable website/SMTP access for the subuser.
19
+
With the [subuser creation API call](https://sendgrid.com/docs/API_Reference/Customer_Subuser_API/subusers.html) you will be able to establish the new subuser's account and profile settings. This call will create the new subuser account, however it does not apply the sending IP for the account, nor does it establish a domain authentication entry or enable website/SMTP access for the subuser.
## Assign an IP to be Used by the New Subuser (required)
33
33
34
-
Now that you have created the new subuser account, you will need to [add an IP](http://sendgrid.com/docs/API_Reference/Customer_Subuser_API/ip_management.html#-Subuser-IP-Assignment) so that it can send emails. We advise that you first find an available IP for this subuser. You can do so by using the following call:
34
+
Now that you have created the new subuser account, you will need to [add an IP](https://sendgrid.com/docs/API_Reference/Customer_Subuser_API/ip_management.html#-Subuser-IP-Assignment) so that it can send emails. We advise that you first find an available IP for this subuser. You can do so by using the following call:
35
35
36
36
#### Call Example
37
37
```
@@ -48,7 +48,7 @@ When defining the parameter 'list' there are a few options you can choose:
After you have selected the IP that you wish to assign to your subuser account, simply make the API call to [append the IP address](http://sendgrid.com/docs/API_Reference/Customer_Subuser_API/ip_management.html#-Subuser-IP-Assignment).
51
+
After you have selected the IP that you wish to assign to your subuser account, simply make the API call to [append the IP address](https://sendgrid.com/docs/API_Reference/Customer_Subuser_API/ip_management.html#-Subuser-IP-Assignment).
52
52
53
53
#### Call Example
54
54
```
@@ -71,9 +71,9 @@ When defining this call's 'set' parameter, you have a few options for appending
71
71
72
72
## Assign a domain authentication for the Subuser Account (optional)
73
73
74
-
After you have created the subuser account and have appended an IP address, you are now ready to assign an _existing_[authenticated domain](https://sendgrid.com/docs/help-support/sending-email/how-to-set-up-domain-authentication.html) to the account. If you have not yet created the required records for authenticating your chosen domain then this step should be skipped.
74
+
After you have created the subuser account and have appended an IP address, you are now ready to assign an _existing_[authenticated domain](https://sendgrid.com/docs/API_Reference/help-support/sending-email/how-to-set-up-domain-authentication.html) to the account. If you have not yet created the required records for authenticating your chosen domain then this step should be skipped.
75
75
76
-
First, you should find out what authenticated domains you have associated with your account. This call will [list your available authenticated domains](http://sendgrid.com/docs/API_Reference/Customer_Subuser_API/whitelabel.html#-List):
76
+
First, you should find out what authenticated domains you have associated with your account. This call will [list your available authenticated domains](https://sendgrid.com/docs/API_Reference/Customer_Subuser_API/whitelabel.html#-List):
The API response above shows that email.sendgrid.com and email.example.com are both already established domain entries, and can be used by this subuser. If none are displayed then the next step in this process should be skipped.
89
89
90
-
If you have a authenticated domain entry that you wish to apply to your subuser then you will need to [append the whitelabel entry](http://sendgrid.com/docs/API_Reference/Customer_Subuser_API/whitelabel.html#-Append) to your subuser:
90
+
If you have a authenticated domain entry that you wish to apply to your subuser then you will need to [append the whitelabel entry](https://sendgrid.com/docs/API_Reference/Customer_Subuser_API/whitelabel.html#-Append) to your subuser:
## Authenticating the Subuser to Have Website/SMTP Access ** (required)
104
104
105
-
The final step in creating your new subuser requires you to simply [activate the subuser](http://sendgrid.com/docs/API_Reference/Customer_Subuser_API/authenticate_a_subuser.html) account so that they have website and SMTP access.
105
+
The final step in creating your new subuser requires you to simply [activate the subuser](https://sendgrid.com/docs/API_Reference/Customer_Subuser_API/authenticate_a_subuser.html) account so that they have website and SMTP access.
106
106
107
107
#### Call Example
108
108
```
@@ -123,7 +123,7 @@ If you have followed all of these steps then you have just created a new subuser
123
123
124
124
But wait, there's more...
125
125
126
-
Now that you have created a new subuser you can change the [Event Notification URL](http://sendgrid.com/docs/API_Reference/Customer_Subuser_API/event_notification_url.html), the subuser's enabled [apps](http://sendgrid.com/docs/API_Reference/Customer_Subuser_API/apps.html), and even set [account limits](http://sendgrid.com/docs/API_Reference/Customer_Subuser_API/account_limits.html) for the subuser.
126
+
Now that you have created a new subuser you can change the [Event Notification URL](https://sendgrid.com/docs/API_Reference/Customer_Subuser_API/event_notification_url.html), the subuser's enabled [apps](https://sendgrid.com/docs/API_Reference/Customer_Subuser_API/apps.html), and even set [account limits](https://sendgrid.com/docs/API_Reference/Customer_Subuser_API/account_limits.html) for the subuser.
Copy file name to clipboardExpand all lines: content/docs/for-developers/sending-email/how-to-use-a-transactional-template-with-smtp.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,13 +31,13 @@ Example
31
31
```
32
32
33
33
You can use this JSON in the `X-SMTPAPI` header of an SMTP message, or in
34
-
the `x-smtpapi` parameter of a [Web API v2 mail send](https://sendgrid.com/docs/Web_API/mail.html#-send) call.
34
+
the `x-smtpapi` parameter of a [Web API v2 mail send](https://sendgrid.com/docs/API_Reference/Web_API/mail.html#-send) call.
35
35
36
-
If you are using the [Web API v3 mail send endpoint](https://sendgrid.com/docs/Web_API_v3/Mail/index.html), you can specify which transactional template you would like to use simply by setting the template ID in the `template_id` parameter of your JSON payload.
36
+
If you are using the [Web API v3 mail send endpoint](https://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/index.html), you can specify which transactional template you would like to use simply by setting the template ID in the `template_id` parameter of your JSON payload.
37
37
38
38
<call-out>
39
39
40
-
Make sure that the version of the template you want to use is set to active by using the [activate endpoint](https://sendgrid.com/docs/Web_API_v3/Transactional_Templates/versions.html#-POST) or by activating it in the UI.
40
+
Make sure that the version of the template you want to use is set to active by using the [activate endpoint](https://sendgrid.com/docs/API_Reference/Web_API_v3/Transactional_Templates/versions.html#-POST) or by activating it in the UI.
Copy file name to clipboardExpand all lines: content/docs/for-developers/sending-email/interspire.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ Once these settings changes have been made within the Email Settings page within
37
37
38
38
A bounce event occurs when mail is not able to be handed off to the mail servers at the end recipient's address. This could happen for a number of reasons such as a full mailbox at the address, or the address not existing at all. SendGrid generates a Bounces suppression list when you send mail to addresses that end up bouncing. We suppress subsequent mail to these addresses unless you tell us otherwise in the Email Reports tab within your account. There are two primary ways you can integrate these bounces, generated by SendGrid's system, with Email Marketer. You can download a .CSV file of bounced addresses by navigating to Email Reports > Bounces within your SendGrid account. You can then upload this list into Email Marketer's system in order to mark "subscribers" as "unsubscribed." You can also handle bounces more programmatically by using our Event API to capture POSTed events and then unsubscribing subscribers in the Email Marketer system by making calls to their XML API.
39
39
40
-
More info on SendGrid's Event API can be found [here](http://sendgrid.com/docs/API_Reference/Webhooks/event.html)
40
+
More info on SendGrid's Event API can be found [here](https://sendgrid.com/docs/API_Reference/Webhooks/event.html)
41
41
42
42
More info on Interspire's XML API can be found [here](http://www.interspire.com/emailmarketer/pdf/XMLApiDocumentation.pdf)
Copy file name to clipboardExpand all lines: content/docs/for-developers/sending-email/migrating-from-v2-to-v3-mail-send.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ navigation:
15
15
16
16
<call-out>
17
17
18
-
If you are currently using the [Web API v2 mail send endpoint](https://sendgrid.com/docs/Web_API/mail.html), we recommend that you upgrade to the [latest version](https://sendgrid.com/docs/Web_API_v3/Mail/index.html).
18
+
If you are currently using the [Web API v2 mail send endpoint](https://sendgrid.com/docs/API_Reference/Web_API/mail.html), we recommend that you upgrade to the [latest version](https://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/index.html).
19
19
20
20
</call-out>
21
21
@@ -32,15 +32,15 @@ With a few quick changes you will be able to take advantage of the improvements
32
32
33
33
All you need to migrate from the v2 to v3 mail send endpoint is a SendGrid account.
34
34
35
-
If you are a new SendGrid user and haven’t begun sending email yet, please go straight to our [v3 Mail Send documentation](https://sendgrid.com/docs/Web_API_v3/Mail/index.html) to get started.
35
+
If you are a new SendGrid user and haven’t begun sending email yet, please go straight to our [v3 Mail Send documentation](https://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/index.html) to get started.
36
36
37
37
## JSON Schema
38
38
39
39
Some of the biggest improvements made to the mail send endpoint reside in the JSON schema used to format and submit the data payload for your email. While the v2 mail send endpoint relies on a combination of JSON and SendGrid’s x-smtpapi headers, all content and metadata sent via the v3 mail send endpoint is defined using JSON within a single request body.
40
40
41
41
Below you will find a visual comparison of the v2 and v3 JSON schemas that highlights equivalent parameters between the two versions and any parameters that have been added or removed. Significant additions include the "personalizations", "sandbox_mode", and "bypass_list_management" parameters.
42
42
43
-
For a more detailed discussion of these new parameters, please visit the [v3 Mail Send Overview](https://sendgrid.com/docs/Web_API_v3/Mail/index.html).
43
+
For a more detailed discussion of these new parameters, please visit the [v3 Mail Send Overview](https://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/index.html).
0 commit comments