POST 17.0/database/backupschedules/list

Description

Retrieve a list of Backup Schedules

URI Parameters

None.

Name Description Type Additional information
Fields

Collection of string

None.

Filters

Collection of DatabaseFilter

None.

Order

string

None.

application/json, text/json

Sample:
{
  "fields": [
    "sample string 1",
    "sample string 2"
  ],
  "filters": [
    {
      "fieldName": "sample string 1",
      "value": "sample string 2",
      "operator": "sample string 3",
      "valueType": "sample string 4"
    },
    {
      "fieldName": "sample string 1",
      "value": "sample string 2",
      "operator": "sample string 3",
      "valueType": "sample string 4"
    }
  ],
  "order": "sample string 1"
}

application/xml, text/xml

Sample:
<ListOptions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Fields>
    <string>sample string 1</string>
    <string>sample string 2</string>
  </Fields>
  <Filters>
    <DatabaseFilter>
      <FieldName>sample string 1</FieldName>
      <Value>sample string 2</Value>
      <Operator>sample string 3</Operator>
      <ValueType>sample string 4</ValueType>
    </DatabaseFilter>
    <DatabaseFilter>
      <FieldName>sample string 1</FieldName>
      <Value>sample string 2</Value>
      <Operator>sample string 3</Operator>
      <ValueType>sample string 4</ValueType>
    </DatabaseFilter>
  </Filters>
  <Order>sample string 1</Order>
</ListOptions>

application/x-www-form-urlencoded

Sample:

Sample not available.

Collection of BackupSchedulesUpdate
Name Description Type Additional information
ID

integer

None.

Description

string

String length: inclusive between 0 and 30

DestinationDrive

string

String length: inclusive between 0 and 10

LastRunDate

date

None.

RunOnThisPC

byte

None.

PCID

integer

None.

ReminderInterval

integer

None.

application/json, text/json

Sample:
[
  {
    "id": 1,
    "description": "sample string 1",
    "destinationDrive": "sample string 2",
    "lastRunDate": "2025-01-09T20:37",
    "runOnThisPC": 64,
    "pcid": 1,
    "reminderInterval": 1
  },
  {
    "id": 1,
    "description": "sample string 1",
    "destinationDrive": "sample string 2",
    "lastRunDate": "2025-01-09T20:37",
    "runOnThisPC": 64,
    "pcid": 1,
    "reminderInterval": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfBackupSchedulesUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <BackupSchedulesUpdate>
    <ID>1</ID>
    <Description>sample string 1</Description>
    <DestinationDrive>sample string 2</DestinationDrive>
    <LastRunDate>2025-01-09T20:37:06.2657179+00:00</LastRunDate>
    <RunOnThisPC>64</RunOnThisPC>
    <PCID>1</PCID>
    <ReminderInterval>1</ReminderInterval>
  </BackupSchedulesUpdate>
  <BackupSchedulesUpdate>
    <ID>1</ID>
    <Description>sample string 1</Description>
    <DestinationDrive>sample string 2</DestinationDrive>
    <LastRunDate>2025-01-09T20:37:06.2657179+00:00</LastRunDate>
    <RunOnThisPC>64</RunOnThisPC>
    <PCID>1</PCID>
    <ReminderInterval>1</ReminderInterval>
  </BackupSchedulesUpdate>
</ArrayOfBackupSchedulesUpdate>