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
**This endpoint allows you to create a new sender identity.**
2726
+
2727
+
*You may create up to 100 unique sender identities.*
2728
+
2729
+
Sender Identities are required to be verified before use. If your domain has been whitelabeled it will auto verify on creation. Otherwise an email will be sent to the `from.email`.
**This endpoint allows you to retrieve a list of all sender identities that have been created for your account.**
2760
+
2761
+
Sender Identities are required to be verified before use. If your domain has been whitelabeled it will auto verify on creation. Otherwise an email will be sent to the `from.email`.
2762
+
2763
+
### GET /senders
2764
+
2765
+
2766
+
```python
2767
+
response = sg.client.senders.get()
2768
+
print response.status_code
2769
+
print response.body
2770
+
print response.headers
2771
+
```
2772
+
## Update a Sender Identity
2773
+
2774
+
**This endpoint allows you to update a sender identity.**
2775
+
2776
+
Updates to `from.email` require re-verification. If your domain has been whitelabeled it will auto verify on creation. Otherwise an email will be sent to the `from.email`.
2777
+
2778
+
Partial updates are allowed, but fields that are marked as "required" in the POST (create) endpoint must not be nil if that field is included in the PATCH request.
**This endpoint allows you to retrieve a specific sender identity.**
2810
+
2811
+
Sender Identities are required to be verified before use. If your domain has been whitelabeled it will auto verify on creation. Otherwise an email will be sent to the `from.email`.
2812
+
2813
+
### GET /senders/{sender_id}
2814
+
2815
+
2816
+
```python
2817
+
sender_id ="test_url_param"
2818
+
response = sg.client.senders._(sender_id).get()
2819
+
print response.status_code
2820
+
print response.body
2821
+
print response.headers
2822
+
```
2823
+
## Delete a Sender Identity
2824
+
2825
+
**This endoint allows you to delete one of your sender identities.**
2826
+
2827
+
Sender Identities are required to be verified before use. If your domain has been whitelabeled it will auto verify on creation. Otherwise an email will be sent to the `from.email`.
**This enpdoint allows you to resend a sender identity verification email.**
2842
+
2843
+
Sender Identities are required to be verified before use. If your domain has been whitelabeled it will auto verify on creation. Otherwise an email will be sent to the `from.email`.
0 commit comments