ManagedCustomers
Service to access basic details about any customer.
Table Specific Information
Select
There are two ways you can query ManagedCustomers.
The following query returns all customers managed by the specified ParentCustomerID.\
SELECT * FROM [ManagedCustomers] WHERE ParentCustomerID=6101846543
The following query returns all customers that are on the GoogleAdwords Account.The driver will get all the customers by querying Customers view internally and for each customer will get the ManagedCustomers.\
SELECT * FROM [ManagedCustomers]
The following query returns all customers that are not hidden on the GoogleAdwords Account.\
SELECT * FROM [ManagedCustomers] WHERE ExcludeHiddenAccounts = true
Columns
Name | Type | Behavior | DisplayName | Description |
ParentCustomerId [KEY] | String | Management Customer Id. | ||
CustomerId | String | Client Customer Id. | ||
Name | String | Name of the Customer. | ||
CanManageClients | String | Boolean showing if Customer can manage clients. | ||
CurrencyCode | String | CurrencyCode of the customer. | ||
DateTimeZone | String | DateTimeZone | ||
TestAccount | Boolean | Boolean showing if the account is a test account. |
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 |
ExcludeHiddenAccounts | Boolean | Name of the place. |
Last updated