Fetch History for EOD
GET Eod History
This API is used to retrieve the client's scheduler or EOD history. By default, the record size is "5".
URL: {{base_url}}/loan-management/v1/getEodHistory
Request
Response:
Key | Data Type | Description | Required |
response | String | Internal response status for the request | Yes |
data | JSON | Data reverted in response to the request | Optional |
error | JSON | Internal response error code | Optional |
Status Code: 200 OK
{
"response": true,
"data": [
{
"eodLogId": 0,
"startTime": "2023-04-26 18:59:59.61",
"endTime": "2023-04-26 19:00:08.949",
"status": "completed",
"businessDate": "2023-04-30",
"logFile": null,
"description": "Rescheduling completed Successfully",
"type": "Rescheduling",
"schLogId": "string",
"startedBy": null
},
{
"eodLogId": 0,
"startTime": "2023-04-26 18:29:36.569",
"endTime": "2023-04-26 18:29:46.328",
"status": "completed",
"businessDate": "2023-04-29",
"logFile": null,
"description": "EOD & BOD has Completed Successfully for 150/150",
"type": "EOD & BOD",
"schLogId": "string",
"startedBy": null
}
],
"error": null
}
Status Code: 400 BAD REQUEST
Condition: If no parameter is passed for the request the system will respond with the given status code
No Comments