4.1.2.1 Request JSON Parameters

This section provides the list of parameters in the JSON Request.

Table 4-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:

  • Must start with an Alphanumeric Character
  • Allowed characters are alphabets, numbers, and special characters - hyphen(-), dot(.), and underscore(_)
  • Length of characters must not be greater than 255 characters
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:

  • text/csv
  • text/plain
  • application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

Request JSON Sample

 [{
"fileName": "File.csv",
"fileSize": 7654,
"mimeType": "text/csv"
}, {
"fileName": "File1.csv",
"fileSize": 8765,
"mimeType": "text/csv"
}]