Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Cloud Notification Service
    • Overview
    • Getting started with mobile push notifications
    • Getting started with in-browser push notifications
    • Getting started with SMS
    • All guides
      • Creating a push notification channel
      • Updating a push notification channel
      • Deleting a push notification channel
      • Creating an endpoint
      • Updating an endpoint
      • Deleting an endpoint
      • Sending a push notification
    • Configuring logging
    • Overview
    • Mobile push notifications
    • In-browser push notifications
    • SMS
    • Quotas and limits
    • All tools
    • AWS CLI
    • AWS SDK for C++
    • AWS SDK for Go
    • AWS SDK for Java
    • AWS SDK for JavaScript
    • AWS SDK for Kotlin
    • AWS SDK for .NET
    • AWS SDK for PHP
    • AWS SDK for Python (boto3)
  • Pricing policy
  • Monitoring metrics
  • Logs Cloud Logging
  • Release notes
  1. Step-by-step operations
  2. Mobile push notifications
  3. Deleting a push notification channel

Deleting a push notification channel

Written by
Yandex Cloud
Updated at April 17, 2025
Management console
AWS CLI
AWS SDK for Python
AWS SDK for PHP
API
  1. In the management console, go to the folder containing the notification channel.
  2. In the list of services, select Cloud Notification Service.
  3. Click next to the notification channel and select Delete.
  4. In the window that opens, click Delete.
  1. If you do not have the AWS CLI yet, install and configure it.

  2. Run this command:

    aws sns delete-platform-application \
      --platform-application-arn <notification_channel_ARN>
    

    Where --platform-application-arn is the notification channel ID (ARN).

    For more information about the aws sns delete-platform-application command, see the AWS documentation.

  1. If you do not have the AWS SDK for Python (boto3) yet, install and configure it.

  2. To delete a push notification channel, use the following code:

    response = client.delete_platform_application(
        PlatformApplicationArn="<notification_channel_ARN>"
    )
    print("Platform application deleted successfully.")
    

    Where PlatformApplicationArn is the notification channel ID (ARN).

  1. If you do not have the AWS SDK for PHP yet, install and configure it.

  2. To delete a push notification channel, use the following code:

    $response = $client->deletePlatformApplication([
        'PlatformApplicationArn' => '<notification_channel_ARN>',
    ]);
    
    echo "Platform application deleted successfully.\n";
    

    Where PlatformApplicationArn is the notification channel ID (ARN).

Use the delete HTTP API method for the PlatformApplications resource in Yandex Cloud Notification Service.

Was the article helpful?

Previous
Updating a push notification channel
Next
Creating an endpoint
Yandex project
© 2025 Yandex.Cloud LLC