GetLinkedAccountsAndCustomersInfo Hizmeti İşlemi - Müşteri Yönetimi
Belirtilen müşteri altında müşteri ve hesap hiyerarşisini alır.
İstek Öğeleri
GetLinkedAccountsAndCustomersInfoRequest nesnesi, hizmet işlemi isteğinin gövde ve üst bilgi öğelerini tanımlar. Öğelerin İstek SOAP'sinde gösterildiği gibi aynı sırada olması gerekir.
Not
Aşağıda aksi belirtilmedikçe, tüm istek öğeleri gereklidir.
İstek Gövdesi Öğeleri
İstek Üst Bilgisi Öğeleri
Öğe | Açıklama | Veri Türü |
---|---|---|
AuthenticationToken | Microsoft Advertising hesaplarına izinleri olan bir kullanıcının kimlik bilgilerini temsil eden OAuth erişim belirteci. Daha fazla bilgi için bkz. OAuth ile kimlik doğrulaması. |
dize |
DeveloperToken | Bing Ads API'sine erişmek için kullanılan geliştirici belirteci. Daha fazla bilgi için bkz . Geliştirici Belirteci Alma. |
dize |
Password | Bu öğe iç kullanım için ayrılmıştır ve API'nin gelecekteki bir sürümünden kaldırılacaktır. Kullanıcı kimlik bilgilerini ayarlamak için AuthenticationToken öğesini kullanmanız gerekir. | dize |
Kullanıcı adı | Bu öğe iç kullanım için ayrılmıştır ve API'nin gelecekteki bir sürümünden kaldırılacaktır. Kullanıcı kimlik bilgilerini ayarlamak için AuthenticationToken öğesini kullanmanız gerekir. | dize |
Yanıt Öğeleri
GetLinkedAccountsAndCustomersInfoResponse nesnesi, hizmet işlemi yanıtının gövde ve üst bilgi öğelerini tanımlar. Öğeler , Yanıt SOAP'sinde gösterildiği gibi aynı sırada döndürülür.
Yanıt Gövdesi Öğeleri
Öğe | Açıklama | Veri Türü |
---|---|---|
AccountsInfo | İstek ölçütlerine uyan reklamveren hesaplarıyla ilgili bilgilerin listesi. Hesap oluşturduğunuz süreden hesap bilgileri yanıta eklenene kadar beş dakikaya kadar gecikme olabileceğini unutmayın. |
AccountInfo dizisi |
CustomersInfo | İstek ölçütlerine uyan müşterilerle ilgili bilgilerin listesi. | CustomerInfo dizisi |
Yanıt Üst Bilgisi Öğeleri
Öğe | Açıklama | Veri Türü |
---|---|---|
TrackingId | API çağrısının ayrıntılarını içeren günlük girdisinin tanımlayıcısı. | dize |
SOAP isteme
Bu şablon, SOAP isteği için gövde ve üst bilgi öğelerinin sırasını gösteren bir araç tarafından oluşturulmuştur. Bu hizmet işlemiyle kullanabileceğiniz desteklenen türler için yukarıdaki İstek Gövdesi Öğeleri başvurusuna bakın.
<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>
Yanıt SOAP
Bu şablon, SOAP yanıtı için gövde ve üst bilgi öğelerinin sırasını gösteren bir araç tarafından oluşturulmuştur.
<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:e39="https://bingads.microsoft.com/Customer/v13/Entities" d4p1:nil="false" xmlns:d4p1="http://www.w3.org/2001/XMLSchema-instance">
<e39:AccountInfo>
<e39:Id>ValueHere</e39:Id>
<e39:Name d4p1:nil="false">ValueHere</e39:Name>
<e39:Number d4p1:nil="false">ValueHere</e39:Number>
<e39:AccountLifeCycleStatus>ValueHere</e39:AccountLifeCycleStatus>
<e39:PauseReason d4p1:nil="false">ValueHere</e39:PauseReason>
</e39:AccountInfo>
</AccountsInfo>
<CustomersInfo xmlns:e40="https://bingads.microsoft.com/Customer/v13/Entities" d4p1:nil="false" xmlns:d4p1="http://www.w3.org/2001/XMLSchema-instance">
<e40:CustomerInfo>
<e40:Id d4p1:nil="false">ValueHere</e40:Id>
<e40:Name d4p1:nil="false">ValueHere</e40:Name>
</e40:CustomerInfo>
</CustomersInfo>
</GetLinkedAccountsAndCustomersInfoResponse>
</s:Body>
</s:Envelope>
Kod Söz Dizimi
Örnek söz dizimi Bing Reklam SDK'ları ile kullanılabilir. Daha fazla örnek için bkz . Bing Ads API Kod Örnekleri .
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)
Gereksinimler
Hizmet: CustomerManagementService.svc v13
Namespace: https://bingads.microsoft.com/Customer/v13
İstek Url'si
https://clientcenter.api.bingads.microsoft.com/CustomerManagement/v13/LinkedAccountsAndCustomersInfo/Query
İstek Öğeleri
GetLinkedAccountsAndCustomersInfoRequest nesnesi, hizmet işlemi isteğinin gövde ve üst bilgi öğelerini tanımlar.
Not
Aşağıda aksi belirtilmedikçe, tüm istek öğeleri gereklidir.
İstek Gövdesi Öğeleri
İstek Üst Bilgisi Öğeleri
Öğe | Açıklama | Veri Türü |
---|---|---|
İzin | Microsoft Advertising hesaplarına izinleri olan bir kullanıcının kimlik bilgilerini temsil eden OAuth erişim belirteci. Belirtecin ön ekinin "Taşıyıcı" olduğundan emin olun, bu doğru kimlik doğrulaması için gereklidir. Daha fazla bilgi için bkz. OAuth ile kimlik doğrulaması. |
dize |
DeveloperToken | Bing Ads API'sine erişmek için kullanılan geliştirici belirteci. Daha fazla bilgi için bkz . Geliştirici Belirteci Alma. |
dize |
Password | Bu öğe iç kullanım için ayrılmıştır ve API'nin gelecekteki bir sürümünden kaldırılacaktır. Kullanıcı kimlik bilgilerini ayarlamak için AuthenticationToken öğesini kullanmanız gerekir. | dize |
Kullanıcı adı | Bu öğe iç kullanım için ayrılmıştır ve API'nin gelecekteki bir sürümünden kaldırılacaktır. Kullanıcı kimlik bilgilerini ayarlamak için AuthenticationToken öğesini kullanmanız gerekir. | dize |
Yanıt Öğeleri
GetLinkedAccountsAndCustomersInfoResponse nesnesi, hizmet işlemi yanıtının gövde ve üst bilgi öğelerini tanımlar. Öğeler , Yanıt JSON'unda gösterildiği gibi aynı sırada döndürülür.
Yanıt Gövdesi Öğeleri
Öğe | Açıklama | Veri Türü |
---|---|---|
AccountsInfo | İstek ölçütlerine uyan reklamveren hesaplarıyla ilgili bilgilerin listesi. Hesap oluşturduğunuz süreden hesap bilgileri yanıta eklenene kadar beş dakikaya kadar gecikme olabileceğini unutmayın. |
AccountInfo dizisi |
CustomersInfo | İstek ölçütlerine uyan müşterilerle ilgili bilgilerin listesi. | CustomerInfo dizisi |
Yanıt Üst Bilgisi Öğeleri
Öğe | Açıklama | Veri Türü |
---|---|---|
TrackingId | API çağrısının ayrıntılarını içeren günlük girdisinin tanımlayıcısı. | dize |
JSON isteme
Bu şablon, JSON isteğinin gövde ve üst bilgi öğelerini gösteren bir araç tarafından oluşturulmuştur. Bu hizmet işlemiyle kullanabileceğiniz desteklenen türler için yukarıdaki İstek Gövdesi Öğeleri başvurusuna bakın.
{
"CustomerId": "LongValueHere",
"OnlyParentAccounts": "ValueHere"
}
Yanıt JSON
Bu şablon, JSON yanıtının gövde ve üst bilgi öğelerini göstermek için bir araç tarafından oluşturulmuştur.
{
"AccountsInfo": [
{
"AccountLifeCycleStatus": "ValueHere",
"Id": "LongValueHere",
"Name": "ValueHere",
"Number": "ValueHere",
"PauseReason": "ValueHere"
}
],
"CustomersInfo": [
{
"Id": "LongValueHere",
"Name": "ValueHere"
}
]
}
Kod Söz Dizimi
SDK'lar aracılığıyla REST API'yi çağırmak için SDK'yı belirli bir sürüme yükseltmeniz ve sistem parametrelerini yapılandırmanız gerekir. Örnek söz dizimi Bing Reklam SDK'ları ile kullanılabilir. Daha fazla örnek için bkz . Bing Ads API Kod Örnekleri .
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)