Fetch EOD Configuration Status (Auto / Manual)
GET Eod Status
Depending on whether the EOD configuration is set to AUTO or Manual, this API is utilized to access the information for the Status of the EOD.
URL: {{base_url}}/eod/scheduler/v1/getEODStatus
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": {
"autoEODStatus": "string",
"autoEODManualStop": "string",
"autoEODAutoStop": "string",
"autoEODScheduledTime": "string",
"autoEODMessage": "string"
},
"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