Plan Types are used to categorize Plans.
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 |
---|---|---|
PlanTypeId | Integer | Read Only |
Name | String 100 | Read Only |
IsInactive | Boolean | Read Only |
Returns an array of Plan Types in descending order.
https://cleverfoxbackup.com/api/plantypes
{ "data": [ { "PlanTypeId": 1, "Name": "CleverFox Backup", "IsInactive": false } ], "page_no": 1, "page_size": 25 }
Returns a single Plan Type.
https://cleverfoxbackup.com/api/plantypes/{PlanTypeId}
{ "data": { "PlanTypeId": 1, "Name": "CleverFox Backup", "IsInactive": false } }