Plans contain details about various backup services.
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 |
---|---|---|
PlanId | Integer | Read Only |
PlanTypeId | Integer | Read Only |
PlanType | Object | Read Only, See API Plan Types |
Name | String 100 | Read Only |
Details | String | Read Only |
IsInactive | Boolean | Read Only |
DeviceLimit | Integer | Read Only, the total number of Devices allowed on this Plan. |
StorageLimit | Integer | Read Only, the total storage, in GB, allowed on this Plan. |
DownloadLimit | Boolean | Read Only, if true, this Plan has a restriction on downloading backups. |
Returns an array of Plans in descending order.
https://cleverfoxbackup.com/api/plans
{ "data": [ { "PlanId": 1, "PlanTypeId": 1, "PlanType": { "PlanTypeId": 1, "Name": "CleverFox Backup", "IsInactive": false }, "Name": "Small Plan", "Details": "1 Device\r\n25 GB Storage\r\nEmail Support\r\nFree Updates", "IsInactive": false, "DeviceLimit": 1, "StorageLimit": 25, "DownloadLimit": false } ], "page_no": 1, "page_size": 25 }
Returns a single Plan.
https://cleverfoxbackup.com/api/plans/{PlanId}
{ "data": { "Name": "Small Plan", "Details": "1 Device\r\n25 GB Storage\r\nEmail Support\r\nFree Updates", "IsInactive": false, "DeviceLimit": 1, "StorageLimit": 25, "DownloadLimit": false } }