Company User Management REST Endpoints
User Management/Company User Management
The Company User Management REST APIs require a company be specified to make separate calls to the host company and each partner company to manage users.
- Create Company User
- Method: postPath:
/rest/v19/companies/{companyName}/users
- Get All Company Users
- Method: getPath:
/rest/v19/companies/{companyName}/users
- Get Company User Details
- Method: getPath:
/rest/v19/companies/{companyName}/users/{userName}
- Get User Access Permissions
- Method: getPath:
/rest/v19/companies/{companyName}/users/{userName}/accessPermissions
- Get User Groups
- Method: getPath:
/rest/v19/companies/{companyName}/users/{userName}/groups
- Get User Password Security Question
- Method: getPath:
/rest/v19/companies/{companyName}/users/{userName}/password
- Import Company Users
- Method: postPath:
/rest/v19/companies/{companyName}/users/actions/import
- Reset User Password
- Method: postPath:
/rest/v19/companies/{companyName}/users/{userName}/actions/resetPassword
- Update Company User
- Method: patchPath:
/rest/v19/companies/{companyName}/users/{userName}
- Update User Access
- Method: putPath:
/rest/v19/companies/{companyName}/users/{userName}/accessPermissions
- Update User Groups
- Method: putPath:
/rest/v19/companies/{companyName}/users/{userName}/groups
- Update User Security Question or Password
- Method: patchPath:
/rest/v19/companies/{companyName}/users/{userName}/password
- Update/Create Company User
- Method: putPath:
/rest/v19/companies/{companyName}/users/{userName}