List Messages

get

/api/v1/bots/{botId}/bundles

Returns a list of the messages from all the skill's resource bundles, where each object in the response array represents a message for a specific language for a given key.

Request

Path Parameters
Query Parameters
  • The type of messages to retrieve. To get all messages, omit this parameter. Accepted values are intent, qna, configuration and user.
  • The number of items to return.
    Default Value: 100
  • The number of items to skip before starting to collect the result set, where 0 is the first item.
    Default Value: 0
  • Whether to return the total number of items that match the request (excluding the paging parameters).
    Default Value: false

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success.
Body ()
Root Schema : PaginatedBundleEntries
Type: object
List of a skill's resource bundle messages.
Show Source
Nested Schema : PagingDataBundleEntryByKey
Type: object
List of a skill's resource bundle messages.
Show Source
Nested Schema : items
Type: array
The items being returned.
Show Source
Nested Schema : BundleEntryByKey
Type: object
The items being returned.
Show Source
Nested Schema : languages
Type: object
Additional Properties Allowed
Show Source
Nested Schema : BundleMessage
Type: object
Show Source

400 Response

The filterBy query parameter value is not supported.
Body ()
Root Schema : RestError
Type: object
Show Source
Nested Schema : o:errorDetails
Type: array
Show Source
Nested Schema : Location
Type: object
Show Source
Nested Schema : Context
Type: object
Show Source

404 Response

A skill with the specified botId does not exist.
Body ()
Root Schema : RestError
Type: object
Show Source
Nested Schema : o:errorDetails
Type: array
Show Source
Nested Schema : Location
Type: object
Show Source
Nested Schema : Context
Type: object
Show Source
Back to Top