GET rest/BackupSchedules/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

BackupScheduleModel
NameDescriptionTypeAdditional information
ID

integer

None.

CompanyID

integer

None.

TableID

integer

None.

Frequency

string

None.

BackupStarted

boolean

None.

LastBackupDate

date

None.

CreatedUserID

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CompanyID": 2,
  "TableID": 3,
  "Frequency": "sample string 4",
  "BackupStarted": true,
  "LastBackupDate": "2026-04-01T06:48:51.0251221+00:00",
  "CreatedUserID": 6
}

text/xml

Sample:
<BackupScheduleModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Navigator.Models">
  <BackupStarted>true</BackupStarted>
  <CompanyID>2</CompanyID>
  <CreatedUserID>6</CreatedUserID>
  <Frequency>sample string 4</Frequency>
  <ID>1</ID>
  <LastBackupDate>2026-04-01T06:48:51.0251221+00:00</LastBackupDate>
  <TableID>3</TableID>
</BackupScheduleModel>