Intent
Get description of a model, model can still be in training and not available for predictions
Retrieves the dataset for the given dataset ID. It only displays the metadata corresponding to the dataset. If you want to view the individual intent phrases that you have added, you can use the dataset section of the dashboard.
get/api/v1/datasets/{datasetId}
Path parameters
datasetIdstring required
Unique ID for the dataset. You can obtain the IDs either from the dataset section in the dashboard or by listing the datasets with the Intent API.
Response
A successful response.
Example response
{
"createdAt": "2021-08-24T12:04:32Z",
"datasetId": "dde4eeae-7652-4bc8-8be1-1cd6ac898dc7",
"description": "This dataset is clearly some awesome dataset.",
"intents": [
"order",
"reservation"
],
"isTemplate": false,
"lastTrainedAt": "2021-08-24T12:04:32Z",
"name": "My awesome dataset",
"updatedAt": "2021-08-24T12:04:32Z"
}