Model - Get Intent
Gets information about the intent model in a version of the application.
GET {Endpoint}/luis/api/v2.0/apps/{appId}/versions/{versionId}/intents/{intentId}
URI Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
|
app
|
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). |
|
intent
|
path | True |
string (uuid) |
The intent classifier ID. |
|
version
|
path | True |
string |
The version ID. |
Request Header
| Name | Required | Type | Description |
|---|---|---|---|
| Ocp-Apim-Subscription-Key | True |
string |
Responses
| Name | Type | Description |
|---|---|---|
| 200 OK |
An intent model info. |
|
| Other Status Codes |
Error Response. |
Security
Ocp-Apim-Subscription-Key
Type:
apiKey
In:
header
Examples
Successful Get Intent Info request
Sample request
GET {Endpoint}/luis/api/v2.0/apps/86226c53-b7a6-416f-876b-226b2b5ab07b/versions/0.1/intents/d7a08f1a-d276-4364-b2d5-b0235c61e37f
Sample response
{
"id": "8285a9ee-6bc0-4409-87f4-82d539f70529",
"name": "TestIntent",
"typeId": 0,
"readableType": "Intent Classifier"
}
Definitions
| Name | Description |
|---|---|
|
Error |
Error response when invoking an operation on the API. |
|
Intent |
Intent Classifier. |
|
Readable |
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 (uuid) |
The ID of the Entity Model. |
| name |
string |
Name of the Entity Model. |
| readableType |
Full name of the entity type. |
|
| typeId |
integer |
The type ID of the Entity Model. |
ReadableType
Full name of the entity type.
| Value | Description |
|---|---|
| Entity Extractor | |
| Hierarchical Entity Extractor | |
| Hierarchical Child Entity Extractor | |
| Composite Entity Extractor | |
| List Entity Extractor | |
| Prebuilt Entity Extractor | |
| Intent Classifier | |
| Pattern.Any Entity Extractor | |
| Closed List Entity Extractor | |
| Regex Entity Extractor |