13.1.2 Response JSON Parameters
This section provides the list of parameters in the JSON Response.
The following table provides details for the query parameters returned in the response body.
Table 13-3 POST JSON Response
Name | Type | Description |
---|---|---|
Id |
STRING | The file Identifier |
name |
STRING | The file name |
type |
STRING | The file type. The response is either ' text/plain' fox TXT files or 'text/csv' for CSV files |
length |
STRING | The file size in bytes |
status |
STRING | The status of the file. The response can be any of the following: INITIALIZED, UPLOADING, or AVAILABLE |
createdDate |
STRING | The creation date of the file |
createdBy |
STRING | The user name who has created the file |
updatedDate |
STRING |
The files that were updated on a specific date For Example: 2022-08-30 17:37:16 |
procId |
STRING | The Process ID of the file |
executionId |
STRING | The Execution ID of the file |
procInstanceId |
STRING | The Process Instance ID of the file |
updatedBy |
STRING | The user name who has updated the file |
Response JSON Sample
{
"code": "DIH0000",
"body": [{
"id": "2",
"name": "extract_address_master.txt",
"type": "text/plain",
"length": "233",
"status": "AVAILABLE",
"createdDate": "2022-08-30 17:36:57",
"createdBy": "ADMIN",
"updatedDate": "2022-08-30 17:37:16",
"procId": "1661867637887",
"executionId": "141",
"procInstanceId": "1661867637887_74c5b9c3-9814-46e5-ba7e-1f48ce443bdb",
"updatedBy": "filestore"
}
]
}