Aracılığıyla paylaş


DismissNotifications Hizmet İşlemi - Müşteri Yönetimi

Bildirimleri kapatmaya yönelik bir hizmet işlemi.

İstek Öğeleri

DismissNotificationsRequest 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

Öğe Açıklama Veri Türü
NotificationTypePairs Bildirim varlığının anahtarı ve değeri. KeyValueEntityOflongint dizisi
Userıd Kullanıcının kimlik numarası. Int

İ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
Username 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

DismissNotificationsResponse 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

İşlemin yanıt gövdesinde hiçbir öğe yok.

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">DismissNotifications</Action>
    <AuthenticationToken i:nil="false">ValueHere</AuthenticationToken>
    <DeveloperToken i:nil="false">ValueHere</DeveloperToken>
  </s:Header>
  <s:Body>
    <DismissNotificationsRequest xmlns="https://bingads.microsoft.com/Customer/v13">
      <UserId i:nil="false">ValueHere</UserId>
      <NotificationTypePairs xmlns:e225="https://bingads.microsoft.com/Customer/v13/Entities" i:nil="false">
        <e225:KeyValueEntityOflongint>
          <e225:Key>ValueHere</e225:Key>
          <e225:Value>ValueHere</e225:Value>
        </e225:KeyValueEntityOflongint>
      </NotificationTypePairs>
    </DismissNotificationsRequest>
  </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>
    <DismissNotificationsResponse xmlns="https://bingads.microsoft.com/Customer/v13" />
  </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<DismissNotificationsResponse> DismissNotificationsAsync(
	int? userId,
	IList<KeyValueEntityOflongint> notificationTypePairs)
{
	var request = new DismissNotificationsRequest
	{
		UserId = userId,
		NotificationTypePairs = notificationTypePairs
	};

	return (await CustomerManagementService.CallAsync((s, r) => s.DismissNotificationsAsync(r), request));
}
static DismissNotificationsResponse dismissNotifications(
	int userId,
	ArrayOfKeyValueEntityOflongint notificationTypePairs) throws RemoteException, Exception
{
	DismissNotificationsRequest request = new DismissNotificationsRequest();

	request.setUserId(userId);
	request.setNotificationTypePairs(notificationTypePairs);

	return CustomerManagementService.getService().dismissNotifications(request);
}
static function DismissNotifications(
	$userId,
	$notificationTypePairs)
{

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

	$request = new DismissNotificationsRequest();

	$request->UserId = $userId;
	$request->NotificationTypePairs = $notificationTypePairs;

	return $GLOBALS['CustomerManagementProxy']->GetService()->DismissNotifications($request);
}
response=customermanagement_service.DismissNotifications(
	UserId=UserId,
	NotificationTypePairs=NotificationTypePairs)

Gereksinimler

Hizmet: CustomerManagementService.svc v13
Ad alanı: https://bingads.microsoft.com/Customer/v13