PUT api/BackupSchedules/Put/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

BackupScheduleModel
NameDescriptionTypeAdditional information
ID

integer

None.

CompanyID

integer

None.

TableID

integer

None.

Frequency

string

None.

BackupStarted

boolean

None.

LastBackupDate

date

None.

CreatedUserID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CompanyID": 2,
  "TableID": 3,
  "Frequency": "sample string 4",
  "BackupStarted": true,
  "LastBackupDate": "2026-04-03T03:36:17.6146657+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-03T03:36:17.6146657+00:00</LastBackupDate>
  <TableID>3</TableID>
</BackupScheduleModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BackupScheduleModel'.

Response Information

Resource Description

None.