Get Export List

get

/api/v1/bots/{botId}/insightExports

Returns a list of the skill bot's export tasks.

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
  • 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 : InsightsExportPagingData
Type: object
List of a skill's insights-export tasks.
Show Source
Nested Schema : items
Type: array
The items being returned.
Show Source
Nested Schema : InsightsExport
Type: object
The items being returned.
Show Source
Nested Schema : filters
Type: object
Include only the data for the specified intent, channel, or locale or any combination of the three filters.
Example:
{
    "filter":{
        "meta":"",
        "enclose1":{
            "meta":"",
            "enclose2":{
                "meta":"",
                "profileString":{
                    "column":"INTENT",
                    "test":{
                        "op":"matches one of",
                        "arg":"Balances;Accounts"
                    }
                }
            }
        },
        "bool3":{
            "content":"and"
        },
        "enclose4":{
            "meta":"",
            "enclose5":{
                "meta":"",
                "profileString":{
                    "column":"CHANNEL",
                    "test":{
                        "op":"matches one of",
                        "arg":"test; facebook"
                    }
                }
            }
        },
        "bool6":{
            "content":"and"
        },
        "enclose7":{
            "meta":"",
            "enclose8":{
                "meta":"",
                "profileString":{
                    "column":"BR_LANG",
                    "test":{
                        "op":"matches one of",
                        "arg":"en-US; en-UK"
                    }
                }
            }
        }
    }
}

404 Response

The skill doesn't exist or insights aren't enabled for the skill.
Back to Top