GetLinkedAccountsAndCustomersInfo Service Operation - Customer Management

Gets the customer and account hierarchy under the specified customer.

Request Elements

The GetLinkedAccountsAndCustomersInfoRequest object defines the body and header elements of the service operation request. The elements must be in the same order as shown in the Request SOAP.

Note

Unless otherwise noted below, all request elements are required.

Request Body Elements

Element Description Data Type
CustomerId The identifier of the customer whose hierarchy you want to get. long
OnlyParentAccounts Determines whether to return only the advertiser accounts that belong to the customer or to also return linked customers and linked advertiser accounts under other customers.

To limit the results to advertiser accounts directly under the specified customer, set this element to true, and otherwise leave it empty or set the property to false. The default value is false.
boolean

Request Header Elements

Element Description Data Type
AuthenticationToken The OAuth access token that represents the credentials of a user who has permissions to Microsoft Advertising accounts.

For more information see Authentication with OAuth.
string
DeveloperToken The developer token used to access the Bing Ads API.

For more information see Get a Developer Token.
string
Password This element is reserved for internal use and will be removed from a future version of the API. You must use the AuthenticationToken element to set user credentials. string
UserName This element is reserved for internal use and will be removed from a future version of the API. You must use the AuthenticationToken element to set user credentials. string

Response Elements

The GetLinkedAccountsAndCustomersInfoResponse object defines the body and header elements of the service operation response. The elements are returned in the same order as shown in the Response SOAP.

Response Body Elements

Element Description Data Type
AccountsInfo The list of information about advertiser accounts that match the request criteria.

Note that there can be a delay of up to five minutes from the time that you create an account until the account information is included in the response.
AccountInfo array
CustomersInfo The list of information about customers that match the request criteria. CustomerInfo array

Response Header Elements

Element Description Data Type
TrackingId The identifier of the log entry that contains the details of the API call. string

Request SOAP

This template was generated by a tool to show the order of the body and header elements for the SOAP request. For supported types that you can use with this service operation, see the Request Body Elements reference above.

<s:Envelope xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Header xmlns="https://bingads.microsoft.com/Customer/v13">
    <Action mustUnderstand="1">GetLinkedAccountsAndCustomersInfo</Action>
    <AuthenticationToken i:nil="false">ValueHere</AuthenticationToken>
    <DeveloperToken i:nil="false">ValueHere</DeveloperToken>
  </s:Header>
  <s:Body>
    <GetLinkedAccountsAndCustomersInfoRequest xmlns="https://bingads.microsoft.com/Customer/v13">
      <CustomerId i:nil="false">ValueHere</CustomerId>
      <OnlyParentAccounts>ValueHere</OnlyParentAccounts>
    </GetLinkedAccountsAndCustomersInfoRequest>
  </s:Body>
</s:Envelope>

Response SOAP

This template was generated by a tool to show the order of the body and header elements for the SOAP response.

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Header xmlns="https://bingads.microsoft.com/Customer/v13">
    <TrackingId d3p1:nil="false" xmlns:d3p1="http://www.w3.org/2001/XMLSchema-instance">ValueHere</TrackingId>
  </s:Header>
  <s:Body>
    <GetLinkedAccountsAndCustomersInfoResponse xmlns="https://bingads.microsoft.com/Customer/v13">
      <AccountsInfo xmlns:e236="https://bingads.microsoft.com/Customer/v13/Entities" d4p1:nil="false" xmlns:d4p1="http://www.w3.org/2001/XMLSchema-instance">
        <e236:AccountInfo>
          <e236:Id>ValueHere</e236:Id>
          <e236:Name d4p1:nil="false">ValueHere</e236:Name>
          <e236:Number d4p1:nil="false">ValueHere</e236:Number>
          <e236:AccountLifeCycleStatus>ValueHere</e236:AccountLifeCycleStatus>
          <e236:PauseReason d4p1:nil="false">ValueHere</e236:PauseReason>
        </e236:AccountInfo>
      </AccountsInfo>
      <CustomersInfo xmlns:e237="https://bingads.microsoft.com/Customer/v13/Entities" d4p1:nil="false" xmlns:d4p1="http://www.w3.org/2001/XMLSchema-instance">
        <e237:CustomerInfo>
          <e237:Id d4p1:nil="false">ValueHere</e237:Id>
          <e237:Name d4p1:nil="false">ValueHere</e237:Name>
        </e237:CustomerInfo>
      </CustomersInfo>
    </GetLinkedAccountsAndCustomersInfoResponse>
  </s:Body>
</s:Envelope>

Code Syntax

The example syntax can be used with Bing Ads SDKs. See Bing Ads API Code Examples for more examples.

public async Task<GetLinkedAccountsAndCustomersInfoResponse> GetLinkedAccountsAndCustomersInfoAsync(
	long? customerId,
	bool onlyParentAccounts)
{
	var request = new GetLinkedAccountsAndCustomersInfoRequest
	{
		CustomerId = customerId,
		OnlyParentAccounts = onlyParentAccounts
	};

	return (await CustomerManagementService.CallAsync((s, r) => s.GetLinkedAccountsAndCustomersInfoAsync(r), request));
}
static GetLinkedAccountsAndCustomersInfoResponse getLinkedAccountsAndCustomersInfo(
	java.lang.Long customerId,
	boolean onlyParentAccounts) throws RemoteException, Exception
{
	GetLinkedAccountsAndCustomersInfoRequest request = new GetLinkedAccountsAndCustomersInfoRequest();

	request.setCustomerId(customerId);
	request.setOnlyParentAccounts(onlyParentAccounts);

	return CustomerManagementService.getService().getLinkedAccountsAndCustomersInfo(request);
}
static function GetLinkedAccountsAndCustomersInfo(
	$customerId,
	$onlyParentAccounts)
{

	$GLOBALS['Proxy'] = $GLOBALS['CustomerManagementProxy'];

	$request = new GetLinkedAccountsAndCustomersInfoRequest();

	$request->CustomerId = $customerId;
	$request->OnlyParentAccounts = $onlyParentAccounts;

	return $GLOBALS['CustomerManagementProxy']->GetService()->GetLinkedAccountsAndCustomersInfo($request);
}
response=customermanagement_service.GetLinkedAccountsAndCustomersInfo(
	CustomerId=CustomerId,
	OnlyParentAccounts=OnlyParentAccounts)

Requirements

Service: CustomerManagementService.svc v13
Namespace: https://bingads.microsoft.com/Customer/v13