/user/manager/update
Update manager data.
Parameters
Name |
Type |
Required |
Example |
Description |
clientId |
string(40) |
yes |
04f78...9f9f3 |
Client id is a unique user identifier provided by GatherUp. |
email |
string |
no |
john.smith@abc-company.com |
User email. |
firstName |
string |
no |
John |
User first name. |
hash |
string(64) |
yes |
bd13a40...303f3c5 |
Hash is a digital request signature. Learn how to generate hash here.
|
lastName |
string |
no |
Smith |
User last name. |
userId |
int |
yes |
1 |
User id. |
role |
string(manager|team|contributor|read-only) |
no |
manager |
User role |
Request
POST https://app.gatherup.com/api/user/manager/update
[Content-Type: application/json]
{
"clientId":"80338307b78b8d84c8b4d40e63e235cc312fcebe",
"hash":"3b288032e87d12c08c95dc8a96128f19ec1ec207af383328413d18f9e0aaf1fd",
"userId":1,
"email":"john.smith@efg-company.com"
}
Response
{
"errorCode":0,
"errorMessage":"Success"
}
Errors
errorCode |
errorMessage |
-1 |
Unknown error |
1 |
Invalid hash sign |
2 |
Invalid clientId |
3 |
Server error - please contact support |
33 |
User does not exist |
36 |
Invalid email |
45 |
Invalid firstName |
46 |
Invalid lastName |