Users API
Keeping your user profile up to date helps SendGrid verify who you are and share important communications with you.
You can learn more in the SendGrid Account Details documentation.
Update a user's profile
PATCH /v3/user/profile
Base url: https://api.sendgrid.com
This endpoint allows you to update your current profile details.
Any one or more of the parameters can be updated via the PATCH /user/profile
endpoint. You must include at least one when you PATCH.
Authentication
- API Key
Headers
Request Body
The street address for this user profile.
An optional second line for the street address of this user profile.
The city for the user profile.
That company that this user profile is associated with.
Th country of this user profile.
The first name of the user.
The last name of the user.
The phone number for the user.
The state for this user.
The website associated with this user.
The zip code for this user.
{
"address": "1451 Larimer Street, 3rd floor",
"address2": "",
"city": "Denver, CO",
"company": "SendGrid",
"country": "US",
"first_name": "Matthew",
"last_name": "Bernier",
"phone": "7208788003",
"state": "CO",
"website": "http://sendgrid.com",
"zip": "80202"
}
Responses
The street address for this user profile.
An optional second line for the street address of this user profile.
The city for the user profile.
That company that this user profile is associated with.
Th country of this user profile.
The first name of the user.
The last name of the user.
The phone number for the user.
The state for this user.
The website associated with this user.
The zip code for this user.
{
"address": "1451 Larimer Street, 3rd floor",
"address2": "",
"city": "Denver, CO",
"company": "SendGrid",
"country": "US",
"first_name": "Matthew",
"last_name": "Bernier",
"phone": "7208788003",
"state": "CO",
"website": "http://sendgrid.com",
"zip": "80202"
}
the error message
the field that generated the error
helper text or docs for troubleshooting
{
"errors": [
{
"field": "field_name",
"message": "error message"
}
]
}
Need some help?
We all do sometimes. Get help now from the Twilio SendGrid Support Team.
Running into a coding hurdle? Lean on the wisdom of the crowd by browsing the SendGrid tag on Stack Overflow or visiting Twilio's Stack Overflow Collective.