ProjectNotificationsSettings Object

Description

Notification settings for a project.

Properties

accountNotifications

Indicates whether account-level notifications should be allowed or blocked for this project.

Type: string

Valid Values:

  • allow

  • block

notifications

List of notifications for this project.

Type: Array of ProjectNotification objects

Sample JSON

{
    "accountNotifications": "allow",
    "notifications": [
        {
            "ProjectNotificationId": "pn-12345678",
            "createdDate": "2023-01-26T00:00:00Z",
            "lastModifiedDate": "2023-01-26T00:00:00Z",
            "lastModifiedBy": "u-12345678",
            
            "notificationMethod": "email",
            "notificationLevel": "errors-only",
            "emailSettings": {
                "emailAddresses": [
                    "user1@example.com",
                    "user2@example.com"
                ]
            }
        }
    ]
}

Last updated