POST api/AzureStorage
Enqueues files to the configured Azure Storage Queue.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| enqueueParameters | Takes file input and doctype as a string |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"input": "sample string 1",
"docType": "sample string 2",
"sourceMachineName": "sample string 3",
"totalLinecount": "sample string 4",
"partyId": "sample string 5",
"batchLinecount": "sample string 6",
"docRefNum": "sample string 7",
"isLastFileInGroup": true,
"filename": "sample string 9"
}
application/xml, text/xml
Sample:
<EnqueueParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LIA.APIService.Models"> <batchLinecount>sample string 6</batchLinecount> <docRefNum>sample string 7</docRefNum> <docType>sample string 2</docType> <filename>sample string 9</filename> <input>sample string 1</input> <isLastFileInGroup>true</isLastFileInGroup> <partyId>sample string 5</partyId> <sourceMachineName>sample string 3</sourceMachineName> <totalLinecount>sample string 4</totalLinecount> </EnqueueParameters>
application/x-www-form-urlencoded
Sample: