IAIMessageCatalogs
All URIs are relative to https://sailpoint.api.identitynow.com/beta
Method | HTTP request | Description |
---|---|---|
Get-BetaMessageCatalogs | GET /translation-catalogs/{catalog-id} | Get Message catalogs |
get-message-catalogs
The getMessageCatalogs API returns message catalog based on the language headers in the requested object.
Parameters
Param Type | Name | Data Type | Required | Description |
---|---|---|---|---|
Path | CatalogId | String | True | The ID of the message catalog. |
Return type
Responses
Code | Description | Data Type |
---|---|---|
200 | The message catalogs based on the request headers | MessageCatalogDto[] |
400 | Client Error - Returned if the request body is invalid. | ErrorResponseDto |
401 | Unauthorized - Returned if there is no authorization header, or if the JWT token is expired. | ListAccessModelMetadataAttribute401Response |
403 | Forbidden - Returned if the user you are running as, doesn't have access to this end-point. | ErrorResponseDto |
429 | Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again. | ListAccessModelMetadataAttribute429Response |
500 | Internal Server Error - Returned if there is an unexpected error. | ErrorResponseDto |
HTTP request headers
- Content-Type: Not defined
- Accept: application/json
Example
$CatalogId = "recommender" # String | The ID of the message catalog.
# Get Message catalogs
try {
Get-BetaMessageCatalogs -CatalogId $CatalogId
# Below is a request that includes all optional parameters
# Get-BetaMessageCatalogs -CatalogId $CatalogId
} catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-BetaMessageCatalogs"
Write-Host $_.ErrorDetails
}