Files
api-specs/idn/beta/paths/message-catalog.yaml
GitHub Action Bot 4bef45c082 Automated commit 'Merge pull request #1503 from sailpoint/devrel-1347
Added new Message catalogs tag and updated message-catalog.ymal to us…' by github action: 7052614381
2023-11-30 21:44:28 +00:00

39 lines
1.0 KiB
YAML

get:
operationId: getMessageCatalogs
summary: Get Message catalogs
tags:
- IAI Message Catalogs
description: >-
The getMessageCatalogs API returns message catalog based on the language headers in the requested object.
parameters:
- in: path
name: catalog-id
schema:
type: string
enum:
- recommender
- access-request-recommender
required: true
description: The ID of the message catalog.
example: recommender
responses:
'200':
description: The message catalogs based on the request headers
content:
application/json:
schema:
type: array
items:
$ref: '../schemas/MessageCatalogDto.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'
security:
- UserContextAuth: []