Update Specific Department / Roles API
Require Authentication
This API is used to update specific department / roles for the company based on combination of deviceID and token.
Only users that have module "user_and_roles_menu" and "manage_user" in their role/department (currently only Administrator) can update role/department
URL
api/companies/updatedepartment/:departmentID
Required parameter (in URL)
- :departmentID «contains departmentID that want to be updated. It must be put in the URL, e.g: api/companies/updatedepartment/2»
Required parameter (POST)
- deviceID
- token
- departmentName
Optional parameter
Example JSON Payload
{ "deviceID": "ABCD-EFGH-IJKL-MNOP", "token": "bb602ab13b8090268cd6e3bb9dfa39e2", "departmentName": "department from api edit" }
Possible return HTTP status code
- 200
- 400
- 401
- 404
- 405
Return message
{ "status": "success", "message": { "departmentID": 2, "departmentName": "department from api edit", "createdDate": 1449305897, "createdBy": 3, "modifiedDate": 1449308715, "modifiedBy": 3, "companyID": 1, "total_users": 0 } }