List Dynamic Entities Migration Requests

get

/api/v1/bots/{botId}/metadataMigration/dynamicEntitiesMigrationRequests

Returns a list of a skill's dynamic entities migration requests. You can optionally filter the list by status (TRAINING, COMPLETED, or TERMINATED_BY_ERROR).

Request

Path Parameters
Query Parameters
  • 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
  • Comma-delimited list of properties to sort on, major to minor. You can append :asc or :desc to a property to sort in ascending or descending order. For example: updatedOn:desc,name:asc. The valid sort properties are updatedOn and createdOn.
  • Return only the requests with a status that contains this string (case-insensitive). Can be TRAINING, COMPLETED, or TERMINATED_BY_ERROR.
  • 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 : PaginatedDynamicEntitiesMigrationRequests
Type: object
List of a skill's dynamic entities migration requests.
Show Source
Nested Schema : items
Type: array
The items being returned.
Show Source
Nested Schema : DynamicEntitiesMigrationRequest
Type: object
Dynamic Entities Migration Request
Show Source

404 Response

The request can't be performed because the specified skill doesn't 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