PUT rest/BackupSchedules/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
BackupScheduleModel| Name | Description | Type | Additional 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:52.7721624+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:52.7721624+00:00</LastBackupDate> <TableID>3</TableID> </BackupScheduleModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.