Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Cloud Notification Service
    • Overview
    • Getting started with mobile push notifications
    • Getting started with in-browser push notifications
    • Getting started with SMS
    • Getting started with topics
    • All guides
      • Creating a channel
      • Managing a channel
      • Creating an endpoint
      • Managing an endpoint
      • Sending a push notification to browser
    • Configuring logging
    • Overview
    • Mobile push notifications
    • In-browser push notifications
    • SMS
    • Topics
    • 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
  • Access management
  • Audit Trails events
  • Metrics Monitoring
  • Logs Cloud Logging
  • Release notes
  1. Step-by-step guides
  2. In-browser push notifications
  3. Creating a channel

Create an in-browser push notification channel

Written by
Yandex Cloud
Updated at July 20, 2026
View in Markdown
Management console
AWS CLI
AWS SDK for Python
AWS SDK for PHP
AWS SDK for JavaScript
API
  1. In the management console, select the folder you want to create a notification channel in.
  2. Navigate to Cloud Notification Service.
  3. Click Create notifications channel.
  4. Select the Push notifications in browser tab.
  5. Optionally, under Logging, enable Write logs.
    1. In the Folder list, select the folder the log group will reside in.
    2. In the Log group field, select an existing log group or create a new one.
  6. Enter a name for your notification channel. The channel name must be unique within Cloud Notification Service.
  7. Optionally, click Add description and enter a description for your notification channel.
  8. Click Create.
  1. If you do not have the AWS CLI yet, install and configure it.

  2. Run this command:

    aws sns create-platform-application \
    --name <channel_name> \
    --platform "WEB" \
    --attributes "{}"
    

    Where --name is a user-defined name for the notification channel.

    Learn more about the aws sns create-platform-application command in this AWS guide.

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

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

    try:
     response = client.create_platform_application(
       Name="<channel_name>",
       Platform="WEB",
       Attributes={},
     )
     print(f'PlatformApplication ARN: {response["PlatformApplicationArn"]}')
    
    except botocore.exceptions.ClientError as error:
     print(f"Error: {error}")
    
  1. If you do not have the AWS SDK for PHP yet, install and configure it.

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

    $response = $client->createPlatformApplication(
      [
        'Name' => '<channel_name>',
        'Platform' => 'WEB',
        'Attributes' => [],
      ]
    );
    print('PlatformApplication ARN: ' . $response->get('PlatformApplicationArn'));
    
  1. If you do not have the AWS SDK for JavaScript yet, install and configure it.

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

    try {
      const response = await client.send(
        new AWS.CreatePlatformApplicationCommand({
          Name: "<channel_name>",
          Platform: "WEB",
        }),
      );
      console.log("PlatformApplication ARN:", response["PlatformApplicationArn"]);
    } catch (e) {
      console.log("Error:", e)
    }
    

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

Creating a notification channel may take some time. After you create your channel, create an endpoint.

Was the article helpful?

Previous
Sending a push notification
Next
Managing a channel
© 2026 Direct Cursus Technology L.L.C.