Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/SendTestNotificationRequestDto.md
2025-02-20 12:59:19 -05:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-send-test-notification-request-dto SendTestNotificationRequestDto SendTestNotificationRequestDto SendTestNotificationRequestDto pythonsdk
python
Python
sdk
SendTestNotificationRequestDto
V2024SendTestNotificationRequestDto
/tools/sdk/python/v2024/models/send-test-notification-request-dto
SDK
Software Development Kit
SendTestNotificationRequestDto
V2024SendTestNotificationRequestDto

SendTestNotificationRequestDto

Properties

Name Type Description Notes
key str The template notification key. [optional]
medium Enum [ 'EMAIL', 'SLACK', 'TEAMS' ] The notification medium. Has to be one of the following enum values. [optional]
context object A Json object that denotes the context specific to the template. [optional]
}

Example

from sailpoint.v2024.models.send_test_notification_request_dto import SendTestNotificationRequestDto

send_test_notification_request_dto = SendTestNotificationRequestDto(
key='cloud_manual_work_item_summary',
medium='EMAIL',
context=None
)

[Back to top]