Files
developer.sailpoint.com/static/api-specs/idn/beta/paths/notification-template-context.yaml
2022-09-29 21:59:22 +00:00

38 lines
1.3 KiB
YAML

get:
operationId: getNotificationsTemplateContext
tags:
- Notifications
summary: Get Notification Template Context
description: >-
The notification service (Hermes) maintains metadata to construct the notification templates or supply any information during the event propagation.
The data-store where this information is retrieved is called "Global Context" (a.k.a. notification template context). It defines a set of attributes
that will be available per tenant (organization).
Regarding authorization, the access token contains the tenant and will grant access to the one requested.
Requires the following security scope: idn:notification-templates:read
# security:
# - oauth2: [idn:notification-templates:read]
responses:
'200':
description: Notification template context attributes for a specific tenant.
content:
application/json:
schema:
type: array
items:
$ref: '../schemas/NotificationTemplateContext.yaml'
'400':
$ref: '../../v3/responses/400.yaml'
'401':
$ref: '../../v3/responses/401.yaml'
'403':
$ref: '../../v3/responses/403.yaml'
'429':
$ref: '../../v3/responses/429.yaml'
'500':
$ref: '../../v3/responses/500.yaml'