Users
Query the available Users in SendGrid.
ビュー固有の情報
Select
ユーザーはId によってのみフィルタできます。
SELECT * FROM Users WHERE Id = '1'
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. |