การดําเนินการ GetCustomersInfo Service - การจัดการลูกค้า
รับตัวระบุและชื่อของลูกค้าที่สามารถเข้าถึงได้โดยผู้ใช้ที่ได้รับการรับรองความถูกต้องในปัจจุบัน
ผลลัพธ์จะถูกกรองตามชื่อลูกค้า
ร้องขอองค์ประกอบ
วัตถุ GetCustomersInfoRequest กําหนดองค์ประกอบ เนื้อความ และ ส่วนหัว ของการร้องขอการดําเนินการบริการ องค์ประกอบต้องอยู่ในลําดับเดียวกับที่แสดงใน Request SOAP
หมายเหตุ
เว้นแต่ระบุไว้เป็นอย่างอื่นด้านล่าง จําเป็นต้องระบุองค์ประกอบคําขอทั้งหมด
ร้องขอองค์ประกอบเนื้อความ
องค์ประกอบส่วนหัวของคําขอ
องค์ ประกอบ | คำอธิบาย | ชนิดข้อมูล |
---|---|---|
AuthenticationToken | โทเค็นการเข้าถึง OAuth ที่แสดงข้อมูลประจําตัวของผู้ใช้ที่มีสิทธิ์เข้าถึงบัญชี Microsoft Advertising สําหรับข้อมูลเพิ่มเติม ดูการรับรองความถูกต้องด้วย OAuth |
สาย อักขระ |
DeveloperToken | โทเค็นนักพัฒนาที่ใช้เพื่อเข้าถึง Bing Ads API สําหรับข้อมูลเพิ่มเติม ดูรับโทเค็นนักพัฒนา |
สาย อักขระ |
รหัส ผ่าน | องค์ประกอบนี้สงวนไว้สําหรับการใช้ภายในและจะถูกเอาออกจากเวอร์ชันในอนาคตของ API คุณต้องใช้องค์ประกอบ AuthenticationToken เพื่อตั้งค่าข้อมูลประจําตัวของผู้ใช้ | สาย อักขระ |
ชื่อ | องค์ประกอบนี้สงวนไว้สําหรับการใช้ภายในและจะถูกเอาออกจากเวอร์ชันในอนาคตของ API คุณต้องใช้องค์ประกอบ AuthenticationToken เพื่อตั้งค่าข้อมูลประจําตัวของผู้ใช้ | สาย อักขระ |
องค์ประกอบการตอบสนอง
วัตถุ GetCustomersInfoResponse จะกําหนดองค์ประกอบ เนื้อความ และ ส่วนหัว ของการตอบสนองการดําเนินการบริการ องค์ประกอบจะถูกส่งกลับตามลําดับเดียวกับที่แสดงใน Response SOAP
องค์ประกอบเนื้อความการตอบสนอง
องค์ ประกอบ | คำอธิบาย | ชนิดข้อมูล |
---|---|---|
CustomersInfo | รายการข้อมูลเกี่ยวกับลูกค้าที่ตรงกับเกณฑ์คําขอ | อาร์เรย์ CustomerInfo |
องค์ประกอบส่วนหัวการตอบสนอง
องค์ ประกอบ | คำอธิบาย | ชนิดข้อมูล |
---|---|---|
TrackingId | ตัวระบุของรายการบันทึกที่ประกอบด้วยรายละเอียดของการเรียกใช้ API | สาย อักขระ |
ร้องขอ SOAP
เทมเพลตนี้ถูกสร้างขึ้นโดยเครื่องมือเพื่อแสดง ลําดับ ขององค์ประกอบ เนื้อความ และ ส่วนหัว สําหรับคําขอ SOAP สําหรับชนิดที่สนับสนุนที่คุณสามารถใช้กับการดําเนินการบริการนี้ โปรดดูการอ้างอิง องค์ประกอบเนื้อความคําขอ ด้านบน
<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">GetCustomersInfo</Action>
<AuthenticationToken i:nil="false">ValueHere</AuthenticationToken>
<DeveloperToken i:nil="false">ValueHere</DeveloperToken>
</s:Header>
<s:Body>
<GetCustomersInfoRequest xmlns="https://bingads.microsoft.com/Customer/v13">
<CustomerNameFilter i:nil="false">ValueHere</CustomerNameFilter>
<TopN>ValueHere</TopN>
</GetCustomersInfoRequest>
</s:Body>
</s:Envelope>
Response SOAP
เทมเพลตนี้ถูกสร้างขึ้นโดยเครื่องมือเพื่อแสดงลําดับขององค์ประกอบ เนื้อ ความและ ส่วนหัว สําหรับการตอบสนอง SOAP
<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>
<GetCustomersInfoResponse xmlns="https://bingads.microsoft.com/Customer/v13">
<CustomersInfo xmlns:e235="https://bingads.microsoft.com/Customer/v13/Entities" d4p1:nil="false" xmlns:d4p1="http://www.w3.org/2001/XMLSchema-instance">
<e235:CustomerInfo>
<e235:Id d4p1:nil="false">ValueHere</e235:Id>
<e235:Name d4p1:nil="false">ValueHere</e235:Name>
</e235:CustomerInfo>
</CustomersInfo>
</GetCustomersInfoResponse>
</s:Body>
</s:Envelope>
ไวยากรณ์โค้ด
ไวยากรณ์ตัวอย่างสามารถใช้กับ Bing Ads SDKs ได้ ดู ตัวอย่างโค้ด API ของโฆษณา Bing สําหรับตัวอย่างเพิ่มเติม
public async Task<GetCustomersInfoResponse> GetCustomersInfoAsync(
string customerNameFilter,
int topN)
{
var request = new GetCustomersInfoRequest
{
CustomerNameFilter = customerNameFilter,
TopN = topN
};
return (await CustomerManagementService.CallAsync((s, r) => s.GetCustomersInfoAsync(r), request));
}
static GetCustomersInfoResponse getCustomersInfo(
java.lang.String customerNameFilter,
int topN) throws RemoteException, Exception
{
GetCustomersInfoRequest request = new GetCustomersInfoRequest();
request.setCustomerNameFilter(customerNameFilter);
request.setTopN(topN);
return CustomerManagementService.getService().getCustomersInfo(request);
}
static function GetCustomersInfo(
$customerNameFilter,
$topN)
{
$GLOBALS['Proxy'] = $GLOBALS['CustomerManagementProxy'];
$request = new GetCustomersInfoRequest();
$request->CustomerNameFilter = $customerNameFilter;
$request->TopN = $topN;
return $GLOBALS['CustomerManagementProxy']->GetService()->GetCustomersInfo($request);
}
response=customermanagement_service.GetCustomersInfo(
CustomerNameFilter=CustomerNameFilter,
TopN=TopN)
ข้อกําหนด
บริการ: CustomerManagementService.svc v13
Namespace: https://bingads.microsoft.com/Customer/v13