Model - List Intents

Gets information about the intent models in a version of the application.

GET {Endpoint}/luis/authoring/v3.0-preview/apps/{appId}/versions/{versionId}/intents
GET {Endpoint}/luis/authoring/v3.0-preview/apps/{appId}/versions/{versionId}/intents?skip={skip}&take={take}

URI Parameters

Name In Required Type Description
appId
path True

string

uuid

The application ID.

Endpoint
path True

string

Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus.api.cognitive.microsoft.com).

versionId
path True

string

The version ID.

skip
query

integer

The number of entries to skip. Default value is 0.

take
query

integer

The number of entries to return. Maximum page size is 500. Default is 100.

Request Header

Name Required Type Description
Ocp-Apim-Subscription-Key True

string

Responses

Name Type Description
200 OK

IntentClassifier[]

A list of intent model infos.

Other Status Codes

ErrorResponse

Error Response.

Security

Ocp-Apim-Subscription-Key

Type: apiKey
In: header

Examples

Successful Get Application Version Intent Infos request

Sample request

GET {Endpoint}/luis/authoring/v3.0-preview/apps/86226c53-b7a6-416f-876b-226b2b5ab07b/versions/0.1/intents?skip=0&take=100

Sample response

[
  {
    "id": "227a71ed-7d4b-4dce-8f3a-16c4e5cc06e8",
    "name": "BookFlight",
    "typeId": 0,
    "readableType": "Intent Classifier"
  },
  {
    "id": "8285a9ee-6bc0-4409-87f4-82d539f70529",
    "name": "None",
    "typeId": 0,
    "readableType": "Intent Classifier"
  },
  {
    "id": "9500536f-ffec-4fab-93ad-6268abb0f73c",
    "name": "$Camera.CapturePhoto",
    "typeId": 0,
    "readableType": "Intent Classifier",
    "customPrebuiltDomainName": "Camera",
    "customPrebuiltModelName": "CapturePhoto"
  }
]

Definitions

Name Description
ErrorResponse

Error response when invoking an operation on the API.

IntentClassifier

Intent Classifier.

ReadableType

Full name of the entity type.

ErrorResponse

Error response when invoking an operation on the API.

Name Type Description
errorType

string

IntentClassifier

Intent Classifier.

Name Type Description
customPrebuiltDomainName

string

The domain name.

customPrebuiltModelName

string

The intent name or entity name.

id

string

The ID of the Entity Model.

name

string

Name of the Entity Model.

readableType

ReadableType

Full name of the entity type.

typeId

integer

The type ID of the Entity Model.

ReadableType

Full name of the entity type.

Name Type Description
Child Entity Extractor

string

Closed List Entity Extractor

string

Composite Entity Extractor

string

Entity Extractor

string

Hierarchical Child Entity Extractor

string

Hierarchical Entity Extractor

string

Intent Classifier

string

List Entity Extractor

string

Pattern.Any Entity Extractor

string

Prebuilt Entity Extractor

string

Regex Entity Extractor

string