Backup Types are used to classify Job Items. The two most commonly used are "File" and "SQL Server".
All of the attribute fields are returned from GET (read) operations. Only those attributes not marked as read only may be set via POST (create) or PUT (update) operations.
Name | Type | Notes |
---|---|---|
BackupTypeId | Integer | Read Only |
EngineId | String 25 | Read Only |
Name | String 100 | Read Only |
EngineType | String 10 | Read Only |
Port | Integer | Read Only |
IsInactive | Boolean | Read Only |
Returns an array of Backup Types in descending order.
https://cleverfoxbackup.com/api/backuptypes
{ "data": [ { "BackupTypeId": 2, "EngineId": "MSSQL", "Name": "SQL Server", "EngineType": "SQLServer", "Port": null, "IsInactive": false }, { "BackupTypeId": 1, "EngineId": "FILE", "Name": "File", "EngineType": "File", "Port": null, "IsInactive": false } ], "page_no": 1, "page_size": 25 }
Returns a single Backup Type.
https://cleverfoxbackup.com/api/backuptypes/{BackupTypeId}
{ "data": { "BackupTypeId": 1, "EngineId": "FILE", "Name": "File", "EngineType": "File", "Port": null, "IsInactive": false } }