GET TaskSchedule/GetTaskSchedule?Schedule_ID={Schedule_ID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Schedule_ID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TaskSchedule| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Server_Code | string |
None. |
|
| Type_ID | Task_Schedule_Type |
None. |
|
| Data | string |
None. |
|
| Last_Executed | date |
None. |
|
| Application_ID | integer |
None. |
|
| Active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"Server_Code": "sample string 2",
"Type_ID": 0,
"Data": "sample string 3",
"Last_Executed": "2025-12-13T02:14:17.6860694+02:00",
"Application_ID": 5,
"Active": true
}
application/xml, text/xml
Sample:
<TaskSchedule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAP_Shared.Models.Client.TaskScheduling"> <Active>true</Active> <Application_ID>5</Application_ID> <Data>sample string 3</Data> <ID>1</ID> <Last_Executed>2025-12-13T02:14:17.6860694+02:00</Last_Executed> <Server_Code>sample string 2</Server_Code> <Type_ID>None</Type_ID> </TaskSchedule>