Partner Users are the people within your organization that need access to the CleverFox Backup website. Partner Users have access to all associated companies, devices, jobs, and logs. Partner Users also have access to special Partner Only data.
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 |
---|---|---|
PartnerUserId | Integer | Read Only |
PartnerId | Integer | Required on POST, otherwise Read Only |
Partner | Object | See API Partners |
FirstName | String 25 | Required |
LastName | String 25 | Required |
String 256 | Required | |
HomePhone | String 20 | |
MobilePhone | String 20 | |
WorkPhone | String 20 | |
IsAccountOwner | Boolean | Read Only |
IsInactive | Boolean | |
AddedOn | DateTime UTC | Read Only |
UpdatedOn | DateTime UTC | Read Only |
Token | String 50 | See API Duplication Prevention |
Returns an array of Partner Users in descending order.
https://cleverfoxbackup.com/api/partnerusers
{ "data": [ { "PartnerUserId": 1, "PartnerId": 1, "Partner": { "PartnerId": 1, "PlanTypeId": 1, "PlanType": null, "Name": "Forward Thinking Software, LLC", "ApplicationId": null, "IsInactive": false, "AddedOn": "2015-01-01T00:00:00.000", "UpdatedOn": null, "Token": null }, "FirstName": "Frank", "LastName": "Perez", "Email": "support@cleverfoxbackup.com", "HomePhone": null, "MobilePhone": null, "WorkPhone": null, "IsAccountOwner": true, "IsInactive": false, "AddedOn": "2015-01-01T00:00:00.000", "UpdatedOn": null, "Token": null } ], "page_no": 1, "page_size": 25 }
Returns a single Partner User.
https://cleverfoxbackup.com/api/partnerusers/{PartnerUserId}
{ "data": { "PartnerUserId": 1, "PartnerId": 1, "Partner": { "PartnerId": 1, "PlanTypeId": 1, "PlanType": null, "Name": "Forward Thinking Software, LLC", "ApplicationId": null, "IsInactive": false, "AddedOn": "2015-01-01T00:00:00.000", "UpdatedOn": null, "Token": null }, "FirstName": "Frank", "LastName": "Perez", "Email": "support@cleverfoxbackup.com", "HomePhone": null, "MobilePhone": null, "WorkPhone": null, "IsAccountOwner": true, "IsInactive": false, "AddedOn": "2015-01-01T00:00:00.000", "UpdatedOn": null, "Token": null } }
Creates a Partner User and returns the updated data.
https://cleverfoxbackup.com/api/partnerusers
{ "data": { "PartnerId": 1, "FirstName": "Frank", "LastName": "Perez", "Email": "support@cleverfoxbackup.com", "HomePhone": null, "MobilePhone": null, "WorkPhone": null, "IsAccountOwner": true, "IsInactive": false, "Token": null } }
Updates a Partner User and returns the updated data.
https://cleverfoxbackup.com/api/partnerusers/{PartnerUserId}
{ "data": { "FirstName": "Frank", "LastName": "Perez", "Email": "support@cleverfoxbackup.com", "HomePhone": null, "MobilePhone": null, "WorkPhone": null, "IsInactive": false, "Token": null } }
Deletes a Partner User.
https://cleverfoxbackup.com/api/partnerusers/{PartnerUserId}