6.1.1.1 Request JSON Parameters
This section provides the list of parameters in the JSON Request.
Table 6-1 Request JSON Parameters
Name | Type | Required | Description |
---|---|---|---|
fileName | STRING | Yes |
The name of the file to be uploaded. The following are the conditions for to enter in this field:
|
fileSize | INTEGER | Yes |
The size of the file to be uploaded. The size of the file should be greater than 1 Byte and less than 7 GB. |
mimeType | STRING | Yes |
The mime type to be uploaded. The following mime types are allowed:
|
Request JSON Sample
[{
"fileName": "File.csv",
"fileSize": 7654,
"mimeType": "text/csv"
}, {
"fileName": "File1.csv",
"fileSize": 8765,
"mimeType": "text/csv"
}, {
"fileName": "file3.zip",
"fileSize": 5512,
"mimeType": "application/zip"
}]