title | ms.service | ms.subservice | ms.topic | author | ms.author | ms.date | zone_pivot_groups | description | dev_langs | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
GetCustomer Service Operation - Customer Management |
bing-ads |
customer-management-api |
article |
jonmeyers |
jonmeyers |
11/13/2024 |
api-reference |
Gets the details of a customer. |
|
Gets the details of a customer.
::: zone pivot="soap"
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.
Element | Description | Data Type |
---|---|---|
CustomerId | The identifier of the customer whose information you want to get. | long |
[!INCLUDErequest-header]
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.
Element | Description | Data Type |
---|---|---|
Customer | A Customer object that contains information about the customer. | Customer |
[!INCLUDEresponse-header]
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>
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:e489="https://bingads.microsoft.com/Customer/v13/Entities" d4p1:nil="false" xmlns:d4p1="http://www.w3.org/2001/XMLSchema-instance">
<e489:CustomerFinancialStatus d4p1:nil="false">ValueHere</e489:CustomerFinancialStatus>
<e489:Id d4p1:nil="false">ValueHere</e489:Id>
<e489:Industry d4p1:nil="false">ValueHere</e489:Industry>
<e489:LastModifiedByUserId d4p1:nil="false">ValueHere</e489:LastModifiedByUserId>
<e489:LastModifiedTime d4p1:nil="false">ValueHere</e489:LastModifiedTime>
<e489:MarketCountry d4p1:nil="false">ValueHere</e489:MarketCountry>
<e489:ForwardCompatibilityMap xmlns:e490="http://schemas.datacontract.org/2004/07/System.Collections.Generic" d4p1:nil="false">
<e490:KeyValuePairOfstringstring>
<e490:key d4p1:nil="false">ValueHere</e490:key>
<e490:value d4p1:nil="false">ValueHere</e490:value>
</e490:KeyValuePairOfstringstring>
</e489:ForwardCompatibilityMap>
<e489:MarketLanguage d4p1:nil="false">ValueHere</e489:MarketLanguage>
<e489:Name d4p1:nil="false">ValueHere</e489:Name>
<e489:ServiceLevel d4p1:nil="false">ValueHere</e489:ServiceLevel>
<e489:CustomerLifeCycleStatus d4p1:nil="false">ValueHere</e489:CustomerLifeCycleStatus>
<e489:TimeStamp d4p1:nil="false">ValueHere</e489:TimeStamp>
<e489:Number d4p1:nil="false">ValueHere</e489:Number>
<e489:CustomerAddress d4p1:nil="false">
<e489:City d4p1:nil="false">ValueHere</e489:City>
<e489:CountryCode d4p1:nil="false">ValueHere</e489:CountryCode>
<e489:Id d4p1:nil="false">ValueHere</e489:Id>
<e489:Line1 d4p1:nil="false">ValueHere</e489:Line1>
<e489:Line2 d4p1:nil="false">ValueHere</e489:Line2>
<e489:Line3 d4p1:nil="false">ValueHere</e489:Line3>
<e489:Line4 d4p1:nil="false">ValueHere</e489:Line4>
<e489:PostalCode d4p1:nil="false">ValueHere</e489:PostalCode>
<e489:StateOrProvince d4p1:nil="false">ValueHere</e489:StateOrProvince>
<e489:TimeStamp d4p1:nil="false">ValueHere</e489:TimeStamp>
<e489:BusinessName d4p1:nil="false">ValueHere</e489:BusinessName>
</e489:CustomerAddress>
</Customer>
</GetCustomerResponse>
</s:Body>
</s:Envelope>
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)
Service: CustomerManagementService.svc v13
Namespace: https://bingads.microsoft.com/Customer/v13
::: zone-end
::: zone pivot="rest"
https://clientcenter.api.bingads.microsoft.com/CustomerManagement/v13/Customer/Query
https://clientcenter.api.sandbox.bingads.microsoft.com/CustomerManagement/v13/Customer/Query
The GetCustomerRequest object defines the body and header elements of the service operation request.
Note
Unless otherwise noted below, all request elements are required.
Element | Description | Data Type |
---|---|---|
CustomerId | The identifier of the customer whose information you want to get. | long |
[!INCLUDErequest-header]
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 JSON.
Element | Description | Data Type |
---|---|---|
Customer | A Customer object that contains information about the customer. | Customer |
[!INCLUDEresponse-header]
This template was generated by a tool to show the body and header elements for the JSON request. For supported types that you can use with this service operation, see the Request Body Elements reference above.
{
"CustomerId": "LongValueHere"
}
This template was generated by a tool to show the body and header elements for the JSON response.
{
"Customer": {
"CustomerAddress": {
"BusinessName": "ValueHere",
"City": "ValueHere",
"CountryCode": "ValueHere",
"Id": "LongValueHere",
"Line1": "ValueHere",
"Line2": "ValueHere",
"Line3": "ValueHere",
"Line4": "ValueHere",
"PostalCode": "ValueHere",
"StateOrProvince": "ValueHere",
"TimeStamp": "ValueHere"
},
"CustomerFinancialStatus": "ValueHere",
"CustomerLifeCycleStatus": "ValueHere",
"ForwardCompatibilityMap": [
{
"key": "ValueHere",
"value": "ValueHere"
}
],
"Id": "LongValueHere",
"Industry": "ValueHere",
"LastModifiedByUserId": "LongValueHere",
"LastModifiedTime": "ValueHere",
"MarketCountry": "ValueHere",
"MarketLanguage": "ValueHere",
"Name": "ValueHere",
"Number": "ValueHere",
"ServiceLevel": "ValueHere",
"TimeStamp": "ValueHere"
}
}
To call REST API through SDKs, you need to upgrade SDK to a certain version and configure the system parameters.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)
::: zone-end