ModifyNotificationChannel#

Description#

Request to modify a notification channel for PaaS service.

Request Parameters#

  • channelId — The ID of the notification channel.

    • Type: String

    • Required: Yes

  • parameters — Parameters of the notification channel.

    • Type: Dict

    • Required: Yes

  • serviceId — The PaaS service ID.

    • Type: String

    • Required: Yes

Response Elements#

Examples#

Managing PaaS services in NGN Cloud via API requires a customized version of the boto3 library:

import boto3

session = boto3.Session(
    aws_access_key_id="<AWS_ACCESS_KEY_ID>",
    aws_secret_access_key="<AWS_SECRET_ACCESS_KEY>",
    region_name="ngn",
)

paas_client = session.client(
    'paas',
    endpoint_url='https://paas.cloud.ngn.com.tr/',
)

channel = paas_client.modify_notification_channel(
    serviceId='fm-cluster-1ACD3963',
    channelId="notification-channel-27495CD5",
    parameters={
        "is_default": True,
        "type": "telegram",
        "bot_token": "12345678:ABC-DEF1234ghIkl-zyx57W2v1u123ew111",
        "chat_id": 87739407,
    }
)

Or c2-paas utility from CROC Cloud API Client software suite:

c2-paas ModifyNotificationChannel serviceId fm-cluster-1ACD3963 channelId notification-channel-27495CD5 parameters.is_default true parameters.type telegram parameters.bot_token '12345678:ABC-DEF1234ghIkl-zyx57W2v1u123ew111' parameters.chat_id 87739407