Exports a LUIS application to JSON format.
get/apps/{appId}/versions/{versionId}/export
Path parameters
appIdstring uuid required
The application ID.
versionIdstring required
The version ID.
Response
The LUIS application structure in JSON format.
Example response
{
"utterances": [
{
"entities": [
{
"children": [
{
"entity": "child1",
"startPos": 0,
"endPos": 0,
"children": []
}
]
}
]
}
]
}