Skip to content

Commit 4b5878d

Browse files
author
Matt Bernier
authored
Merge pull request #585 from pushkyn/update-usage-fix-typos
Update USAGE.md - fix some typos
2 parents 5c53d2c + 3b9f252 commit 4b5878d

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

USAGE.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ Console.ReadLine();
153153

154154
## Retrieve a specific whitelisted IP
155155

156-
**This endpoint allows you to retreive a specific IP address that has been whitelisted.**
156+
**This endpoint allows you to retrieve a specific IP address that has been whitelisted.**
157157

158158
You must include the ID for the specific IP address you want to retrieve in your call.
159159

@@ -459,7 +459,7 @@ Console.ReadLine();
459459

460460
**This endpoint allows you to revoke an existing API Key**
461461

462-
Authentications using this API Key will fail after this request is made, with some small propogation delay.If the API Key ID does not exist an HTTP 404 will be returned.
462+
Authentications using this API Key will fail after this request is made, with some small propagation delay.If the API Key ID does not exist an HTTP 404 will be returned.
463463

464464
The API Keys feature allows customers to be able to generate an API Key credential which can be used for authentication with the SendGrid v3 Web API or the [Mail API Endpoint](https://sendgrid.com/docs/API_Reference/Web_API/mail.html).
465465

@@ -520,7 +520,7 @@ This endpoint will return information for each group ID that you include in your
520520

521521
Suppressions are a list of email addresses that will not receive content sent under a given [group](https://sendgrid.com/docs/API_Reference/Web_API_v3/Suppression_Management/groups.html).
522522

523-
Suppression groups, or [unsubscribe groups](https://sendgrid.com/docs/API_Reference/Web_API_v3/Suppression_Management/groups.html), allow you to label a category of content that you regularly send. This gives your recipients the ability to opt out of a specific set of your email. For example, you might define a group for your transactional email, and one for your marketing email so that your users can continue recieving your transactional email witout having to receive your marketing content.
523+
Suppression groups, or [unsubscribe groups](https://sendgrid.com/docs/API_Reference/Web_API_v3/Suppression_Management/groups.html), allow you to label a category of content that you regularly send. This gives your recipients the ability to opt out of a specific set of your email. For example, you might define a group for your transactional email, and one for your marketing email so that your users can continue receiving your transactional email without having to receive your marketing content.
524524

525525
### GET /asm/groups
526526

@@ -749,9 +749,9 @@ Console.ReadLine();
749749

750750
## Retrieve a Global Suppression
751751

752-
**This endpoint allows you to retrieve a global suppression. You can also use this endpoint to confirm if an email address is already globally suppresed.**
752+
**This endpoint allows you to retrieve a global suppression. You can also use this endpoint to confirm if an email address is already globally suppressed.**
753753

754-
If the email address you include in the URL path parameter `{email}` is alreayd globally suppressed, the response will include that email address. If the address you enter for `{email}` is not globally suppressed, an empty JSON object `{}` will be returned.
754+
If the email address you include in the URL path parameter `{email}` is already globally suppressed, the response will include that email address. If the address you enter for `{email}` is not globally suppressed, an empty JSON object `{}` will be returned.
755755

756756
A global suppression (or global unsubscribe) is an email address of a recipient who does not want to receive any of your messages. A globally suppressed recipient will be removed from any email you send. For more information, please see our [User Guide](https://sendgrid.com/docs/User_Guide/Suppressions/global_unsubscribes.html).
757757

@@ -1837,7 +1837,7 @@ Valid operators for create and update depend on the type of the field you are se
18371837

18381838
Segment conditions using "eq" or "ne" for email clicks and opens should provide a "field" of either *clicks.campaign_identifier* or *opens.campaign_identifier*. The condition value should be a string containing the id of a completed campaign.
18391839

1840-
Segments may contain multiple condtions, joined by an "and" or "or" in the "and_or" field. The first condition in the conditions list must have an empty "and_or", and subsequent conditions must all specify an "and_or".
1840+
Segments may contain multiple conditions, joined by an "and" or "or" in the "and_or" field. The first condition in the conditions list must have an empty "and_or", and subsequent conditions must all specify an "and_or".
18411841

18421842
The Contacts API helps you manage your [Marketing Campaigns](https://sendgrid.com/docs/User_Guide/Marketing_Campaigns/index.html) recipients.
18431843

@@ -2152,7 +2152,7 @@ Console.ReadLine();
21522152

21532153
## Retrieve all IP pools.
21542154

2155-
**This endpoint allows you to retreive all of your IP pools.**
2155+
**This endpoint allows you to retrieve all of your IP pools.**
21562156

21572157
IP Pools allow you to group your dedicated SendGrid IP addresses together. For example, you could create separate pools for your transactional and marketing email. When sending marketing emails, specify that you want to use the marketing IP pool. This allows you to maintain separate reputations for your different email traffic.
21582158

@@ -4645,7 +4645,7 @@ Console.ReadLine();
46454645

46464646
**This endpoint allows you to retrieve the current credit balance for your account.**
46474647

4648-
Your monthly credit allotment limits the number of emails you may send before incurring overage charges. For more information about credits and billing, please visit our [Clssroom](https://sendgrid.com/docs/Classroom/Basics/Billing/billing_info_and_faqs.html).
4648+
Your monthly credit allotment limits the number of emails you may send before incurring overage charges. For more information about credits and billing, please visit our [Classroom](https://sendgrid.com/docs/Classroom/Basics/Billing/billing_info_and_faqs.html).
46494649

46504650
### GET /user/credits
46514651

@@ -5086,7 +5086,7 @@ Console.ReadLine();
50865086

50875087
**This endpoint allows you to retrieve all of your current inbound parse settings.**
50885088

5089-
The inbound parse webhook allows you to have incoming emails parsed, extracting some or all of the contnet, and then have that content POSTed by SendGrid to a URL of your choosing. For more information, please see our [User Guide](https://sendgrid.com/docs/API_Reference/Webhooks/parse.html).
5089+
The inbound parse webhook allows you to have incoming emails parsed, extracting some or all of the content, and then have that content POSTed by SendGrid to a URL of your choosing. For more information, please see our [User Guide](https://sendgrid.com/docs/API_Reference/Webhooks/parse.html).
50905090

50915091
### GET /user/webhooks/parse/settings
50925092

@@ -5103,7 +5103,7 @@ Console.ReadLine();
51035103

51045104
**This endpoint allows you to update a specific inbound parse setting.**
51055105

5106-
The inbound parse webhook allows you to have incoming emails parsed, extracting some or all of the contnet, and then have that content POSTed by SendGrid to a URL of your choosing. For more information, please see our [User Guide](https://sendgrid.com/docs/API_Reference/Webhooks/parse.html).
5106+
The inbound parse webhook allows you to have incoming emails parsed, extracting some or all of the content, and then have that content POSTed by SendGrid to a URL of your choosing. For more information, please see our [User Guide](https://sendgrid.com/docs/API_Reference/Webhooks/parse.html).
51075107

51085108
### PATCH /user/webhooks/parse/settings/{hostname}
51095109

@@ -5128,7 +5128,7 @@ Console.ReadLine();
51285128

51295129
**This endpoint allows you to retrieve a specific inbound parse setting.**
51305130

5131-
The inbound parse webhook allows you to have incoming emails parsed, extracting some or all of the contnet, and then have that content POSTed by SendGrid to a URL of your choosing. For more information, please see our [User Guide](https://sendgrid.com/docs/API_Reference/Webhooks/parse.html).
5131+
The inbound parse webhook allows you to have incoming emails parsed, extracting some or all of the content, and then have that content POSTed by SendGrid to a URL of your choosing. For more information, please see our [User Guide](https://sendgrid.com/docs/API_Reference/Webhooks/parse.html).
51325132

51335133
### GET /user/webhooks/parse/settings/{hostname}
51345134

@@ -5146,7 +5146,7 @@ Console.ReadLine();
51465146

51475147
**This endpoint allows you to delete a specific inbound parse setting.**
51485148

5149-
The inbound parse webhook allows you to have incoming emails parsed, extracting some or all of the contnet, and then have that content POSTed by SendGrid to a URL of your choosing. For more information, please see our [User Guide](https://sendgrid.com/docs/API_Reference/Webhooks/parse.html).
5149+
The inbound parse webhook allows you to have incoming emails parsed, extracting some or all of the content, and then have that content POSTed by SendGrid to a URL of your choosing. For more information, please see our [User Guide](https://sendgrid.com/docs/API_Reference/Webhooks/parse.html).
51505150

51515151
### DELETE /user/webhooks/parse/settings/{hostname}
51525152

@@ -5162,9 +5162,9 @@ Console.ReadLine();
51625162

51635163
## Retrieves Inbound Parse Webhook statistics.
51645164

5165-
**This endpoint allows you to retrieve the statistics for your Parse Webhook useage.**
5165+
**This endpoint allows you to retrieve the statistics for your Parse Webhook usage.**
51665166

5167-
SendGrid's Inbound Parse Webhook allows you to parse the contents and attachments of incomming emails. The Parse API can then POST the parsed emails to a URL that you specify. The Inbound Parse Webhook cannot parse messages greater than 20MB in size, including all attachments.
5167+
SendGrid's Inbound Parse Webhook allows you to parse the contents and attachments of incoming emails. The Parse API can then POST the parsed emails to a URL that you specify. The Inbound Parse Webhook cannot parse messages greater than 20MB in size, including all attachments.
51685168

51695169
There are a number of pre-made integrations for the SendGrid Parse Webhook which make processing events easy. You can find these integrations in the [Library Index](https://sendgrid.com/docs/Integrate/libraries.html#-Webhook-Libraries).
51705170

0 commit comments

Comments
 (0)