bruno/memori-engine/Intents/Adds a new Intent object.bru

41 lines
681 B
Plaintext
Raw Normal View History

2024-07-16 10:15:30 +02:00
meta {
2025-03-26 15:08:31 +01:00
name: Adds a new Intent object.
2024-07-16 10:15:30 +02:00
type: http
seq: 6
}
post {
2025-03-26 15:08:31 +01:00
url: {{baseUrl}}/memori/v2/Intent/:strSessionID
2024-07-16 10:15:30 +02:00
body: json
auth: none
}
params:path {
2025-03-26 15:08:31 +01:00
strSessionID:
2024-07-16 10:15:30 +02:00
}
body:json {
{
"intentID": "",
"intentType": "",
"name": "",
2025-03-26 15:08:31 +01:00
"utterances": [
{
"utteranceID": "",
"text": "",
"creationTimestamp": "",
"creationSessionID": "",
"lastChangeTimestamp": "",
"lastChangeSessionID": ""
}
],
2024-07-16 10:15:30 +02:00
"timeoutIntent": "",
"webHook": "",
"validityMinutes": "",
"creationTimestamp": "",
"creationSessionID": "",
"lastChangeTimestamp": "",
"lastChangeSessionID": ""
}
}