mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-10 04:19:19 +00:00
33 lines
1.0 KiB
YAML
33 lines
1.0 KiB
YAML
get:
|
|
operationId: getNotificationsTemplateContext
|
|
tags:
|
|
- Notifications
|
|
summary: Get Notification Template Context
|
|
description: >-
|
|
The notification service 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).
|
|
|
|
security:
|
|
- UserContextAuth: [ idn:notification-templates:read ]
|
|
|
|
responses:
|
|
'200':
|
|
description: Notification template context attributes for a specific tenant.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$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'
|
|
|
|
|