bruno/memori-backend/ImportExport/Starts an Import process for memories from a TXT file.bru

41 lines
724 B
Plaintext
Raw Normal View History

2024-07-16 10:15:30 +02:00
meta {
2025-03-26 15:08:31 +01:00
name: Starts an Import process for memories from a TXT file.
2024-07-16 10:15:30 +02:00
type: http
seq: 2
}
post {
2025-03-26 15:08:31 +01:00
url: {{baseUrl}}/api/v2/ImportExport/ImportTXT/:strToken/:strMemoriID
2024-07-16 10:15:30 +02:00
body: json
auth: none
}
params:path {
2025-03-26 15:08:31 +01:00
strToken:
strMemoriID:
2024-07-16 10:15:30 +02:00
}
body:json {
{
"txtSpecs": {
"granularity": "",
"questionsGenerationInstructions": "",
"attachSource": "",
"sourceAttachmentTitle": ""
},
"conclusive": "",
"notPickable": "",
"contextVarsToSet": {},
"contextVarsToMatch": {},
2025-03-26 15:08:31 +01:00
"memoryTags": [],
2024-07-16 10:15:30 +02:00
"receiverID": "",
"addMediaLink": "",
2025-03-26 15:08:31 +01:00
"linkTitleHandling": "",
"linkTitle": "",
"rows": [],
"importName": "",
"forceImport": "",
2024-07-16 10:15:30 +02:00
"notes": ""
}
}