Skip to main content

IAIMessageCatalogs

All URIs are relative to https://sailpoint.api.identitynow.com/beta

MethodHTTP requestDescription
Get-BetaMessageCatalogsGET /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.

API Spec

Parameters

Param TypeNameData TypeRequiredDescription
PathCatalogIdStringTrueThe ID of the message catalog.

Return type

MessageCatalogDto[]

Responses

CodeDescriptionData Type
200The message catalogs based on the request headersMessageCatalogDto[]
400Client Error - Returned if the request body is invalid.ErrorResponseDto
401Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.ListAccessModelMetadataAttribute401Response
403Forbidden - Returned if the user you are running as, doesn't have access to this end-point.ErrorResponseDto
429Too 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
500Internal 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
}

[Back to top]