Users
Query the available Users in SendGrid.
View-Specific Information
Select
Query this table to retrieve your current profile details.
SELECT * FROM Users
Update
You can update the all the columns marked as readonly false.
UPDATE Users Set Address='Milpitas', Address2='North Carolina' WHERE id='38713966'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
The Id of the user. | |
| Address | String | False |
The address of the user. | |
| Address2 | String | False |
The secondary address field for the user. | |
| City | String | False |
The city of the user. | |
| Company | String | False |
The company of the user. | |
| Country | String | False |
The country of the user. | |
| FirstName | String | False |
The first name of the user. | |
| LastName | String | False |
The last name of the user. | |
| Phone | String | False |
The phone number of the user. | |
| State | String | False |
The state the user is located in. | |
| Website | String | False |
The Web site URL of the user. | |
| Zip | String | False |
The ZIP code of the user. | |
| String | True |
The Email Address of the user. | ||
| Type | String | True |
The type of the user. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| AccountId | String |
The ID of the account. |
| SubuserUsername | String |
The username of the subuser. |