GET TaskSchedule/GetTaskSchedules

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TaskSchedule
NameDescriptionTypeAdditional 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:12:37.0448909+02:00",
    "Application_ID": 5,
    "Active": true
  },
  {
    "ID": 1,
    "Server_Code": "sample string 2",
    "Type_ID": 0,
    "Data": "sample string 3",
    "Last_Executed": "2025-12-13T02:12:37.0448909+02:00",
    "Application_ID": 5,
    "Active": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfTaskSchedule xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAP_Shared.Models.Client.TaskScheduling">
  <TaskSchedule>
    <Active>true</Active>
    <Application_ID>5</Application_ID>
    <Data>sample string 3</Data>
    <ID>1</ID>
    <Last_Executed>2025-12-13T02:12:37.0448909+02:00</Last_Executed>
    <Server_Code>sample string 2</Server_Code>
    <Type_ID>None</Type_ID>
  </TaskSchedule>
  <TaskSchedule>
    <Active>true</Active>
    <Application_ID>5</Application_ID>
    <Data>sample string 3</Data>
    <ID>1</ID>
    <Last_Executed>2025-12-13T02:12:37.0448909+02:00</Last_Executed>
    <Server_Code>sample string 2</Server_Code>
    <Type_ID>None</Type_ID>
  </TaskSchedule>
</ArrayOfTaskSchedule>