@Erik Meijer Welcome to Microsoft Q&A! Thanks for posting the question.
.
Below is the syntax for azureBlobFileListSource
attribute:
POST /documentModels/{modelId}:analyzeBatch
[
{
"azureBlobSource": {
"containerUrl": "{your-source-container-SAS-URL}",
"prefix": "trainingDocs/"
},
"azureBlobFileListSource": {
"containerUrl": "{your-source-container-SAS-URL}",
"fileList": "myFileList.jsonl"
},
"resultContainerUrl": "{your-result-container-SAS-URL}",
"resultPrefix": "trainingDocsResult/",
"overwriteExisting": false
}
]
.
More info here:
. Here is the content of the jsonl file for your reference:
{"file":"IRS-1040-A/train/IRS_1040_1_01.pdf"}
{"file":"IRS-1040-A/train/IRS_1040_1_02.pdf"}
{"file":"IRS-1040-A/train/IRS_1040_1_03.pdf"}
{"file":"IRS-1040-A/train/IRS_1040_1_04.pdf"}
{"file":"IRS-1040-A/train/IRS_1040_1_05.pdf"}
.
More info here.
.
- Are you invoking the API from SDK or REST API ?
- Are you using Postman to invoke this API ?
- Please share your complete request header and request body so that I can validate the format at my end. (Share these details over Private message.)
Awaiting your reply.