GetCustomer Service Operation - Customer Management

Gets the details of a customer.

Request Elements

The GetCustomerRequest 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 information you want to get. long

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 GetCustomerResponse 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
Customer A Customer object that contains information about the customer. Customer

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">GetCustomer</Action>
    <AuthenticationToken i:nil="false">ValueHere</AuthenticationToken>
    <DeveloperToken i:nil="false">ValueHere</DeveloperToken>
  </s:Header>
  <s:Body>
    <GetCustomerRequest xmlns="https://bingads.microsoft.com/Customer/v13">
      <CustomerId>ValueHere</CustomerId>
    </GetCustomerRequest>
  </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>
    <GetCustomerResponse xmlns="https://bingads.microsoft.com/Customer/v13">
      <Customer xmlns:e233="https://bingads.microsoft.com/Customer/v13/Entities" d4p1:nil="false" xmlns:d4p1="http://www.w3.org/2001/XMLSchema-instance">
        <e233:CustomerFinancialStatus d4p1:nil="false">ValueHere</e233:CustomerFinancialStatus>
        <e233:Id d4p1:nil="false">ValueHere</e233:Id>
        <e233:Industry d4p1:nil="false">ValueHere</e233:Industry>
        <e233:LastModifiedByUserId d4p1:nil="false">ValueHere</e233:LastModifiedByUserId>
        <e233:LastModifiedTime d4p1:nil="false">ValueHere</e233:LastModifiedTime>
        <e233:MarketCountry d4p1:nil="false">ValueHere</e233:MarketCountry>
        <e233:ForwardCompatibilityMap xmlns:e234="http://schemas.datacontract.org/2004/07/System.Collections.Generic" d4p1:nil="false">
          <e234:KeyValuePairOfstringstring>
            <e234:key d4p1:nil="false">ValueHere</e234:key>
            <e234:value d4p1:nil="false">ValueHere</e234:value>
          </e234:KeyValuePairOfstringstring>
        </e233:ForwardCompatibilityMap>
        <e233:MarketLanguage d4p1:nil="false">ValueHere</e233:MarketLanguage>
        <e233:Name d4p1:nil="false">ValueHere</e233:Name>
        <e233:ServiceLevel d4p1:nil="false">ValueHere</e233:ServiceLevel>
        <e233:CustomerLifeCycleStatus d4p1:nil="false">ValueHere</e233:CustomerLifeCycleStatus>
        <e233:TimeStamp d4p1:nil="false">ValueHere</e233:TimeStamp>
        <e233:Number d4p1:nil="false">ValueHere</e233:Number>
        <e233:CustomerAddress d4p1:nil="false">
          <e233:City d4p1:nil="false">ValueHere</e233:City>
          <e233:CountryCode d4p1:nil="false">ValueHere</e233:CountryCode>
          <e233:Id d4p1:nil="false">ValueHere</e233:Id>
          <e233:Line1 d4p1:nil="false">ValueHere</e233:Line1>
          <e233:Line2 d4p1:nil="false">ValueHere</e233:Line2>
          <e233:Line3 d4p1:nil="false">ValueHere</e233:Line3>
          <e233:Line4 d4p1:nil="false">ValueHere</e233:Line4>
          <e233:PostalCode d4p1:nil="false">ValueHere</e233:PostalCode>
          <e233:StateOrProvince d4p1:nil="false">ValueHere</e233:StateOrProvince>
          <e233:TimeStamp d4p1:nil="false">ValueHere</e233:TimeStamp>
          <e233:BusinessName d4p1:nil="false">ValueHere</e233:BusinessName>
        </e233:CustomerAddress>
      </Customer>
    </GetCustomerResponse>
  </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<GetCustomerResponse> GetCustomerAsync(
	long customerId)
{
	var request = new GetCustomerRequest
	{
		CustomerId = customerId
	};

	return (await CustomerManagementService.CallAsync((s, r) => s.GetCustomerAsync(r), request));
}
static GetCustomerResponse getCustomer(
	java.lang.Long customerId) throws RemoteException, Exception
{
	GetCustomerRequest request = new GetCustomerRequest();

	request.setCustomerId(customerId);

	return CustomerManagementService.getService().getCustomer(request);
}
static function GetCustomer(
	$customerId)
{

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

	$request = new GetCustomerRequest();

	$request->CustomerId = $customerId;

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

Requirements

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