Users
Query the available users.
テーブル固有の情報
Select
本製品 はSalesforce Marketing Cloud Account Engagement API を使用して、以下のカラムと演算子で構築されたWHERE 句条件を処理します。その他のフィルタはクライアントサイドで本製品 内部で処理されます。
- Id は '='、'<'、'<='、'>'、'>=' をサポートしています。
- IsDeleted は'=' をサポートしています。
- UpdatedAt は '='、'<'、'<='、'>'、'>=' をサポートしています。
- CreatedAt は '='、'<'、'<='、'>'、'>=' をサポートしています。
例えば、次のクエリはサーバーサイドで処理されます。
SELECT * FROM Users WHERE Id = 32 SELECT * FROM Users WHERE CreatedAt < '02/03/2019 23:11:33' AND CreatedAt > '02/03/2018 23:11:33'
Get Deleted
削除されたユーザーを取得するには、GETDELETED 文を実行します。
GETDELETED FROM Users
Columns
Name | Type | References | Description |
Id [KEY] | Int64 | Pardot ID for this object. | |
String | Email address of the user. | ||
FirstName | String | First name of the user. | |
Username | String | Formatted as an email address, though distinct from the email field on the user object. | |
JobTitle | String | Job title of the user. | |
Role | String | Role of the user. | |
SalesforceId | String | Salesforce Id of the object. | |
IsDeleted | Boolean | True if the object is in the recycle bin in Pardot. | |
CreatedAt | Datetime | The timestamp of when this object was created. | |
UpdatedAt | Datetime | The timestamp of when this object was last updated. | |
CreatedById | Int64 | ID of the individual who created this object. | |
UpdatedById | Int64 | ID of the individual who last updated this object. |