Fetch push notification service settings

GET /v1/Services/{ChatServiceSid}/Configuration/Notifications

A Service Notification resource manages a set of settings to determine push notification behavior at service level.

Fetch push notification service settings

Path parameters

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • account_sid string | null

      The unique ID of the Account responsible for this configuration.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

    • The Push Notification configuration for being added to a Conversation.

    • chat_service_sid string | null

      The SID of the Conversation Service that the Configuration applies to.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^IS[0-9a-fA-F]{32}$.

    • log_enabled boolean | null

      Weather the notification logging is enabled.

    • The Push Notification configuration for New Messages.

    • The Push Notification configuration for being removed from a Conversation.

    • url string(uri) | null

      An absolute URL for this configuration.

GET /v1/Services/{ChatServiceSid}/Configuration/Notifications
curl \
 -X GET https://conversations.twilio.com/v1/Services/{ChatServiceSid}/Configuration/Notifications \
 --user "username:password"
Response examples (200)
{
  "account_sid": "string",
  "chat_service_sid": "string",
  "log_enabled": true,
  "url": "https://example.com"
}