PUT - To Enable User
Purpose
The API can be used by the admin to enable a user account.
Request URL
https://<hostname>/api/organization/<zoid>/accounts/<accountid>
Request Parameters
| Parameter | Data Type | Description | 
| zoid* | Integer | Unique identifier of your organization in Zoho | 
| accountid* | Integer | Unique ID of the account of the user you wish to enable | 
* - Mandatory parameters
Request Body (JSON Object)
| Parameter | Data Type | Allowed Values | Description | 
| mode* | String | enableUser | To enable a user account in the organization. | 
| zuid* | Long | User's Zuid | Unique ID of a user in Zoho. | 
| password* | String | Admin Password | The password of your Admin account. | 
| unblockIncoming | Boolean | True/False | By giving true, you unblock all incoming emails of a user | 
* - Mandatory parameters
Sample Request
Copied{ 
"mode":"enableUser",
 "unblockIncoming":"true",
 "password":"abcd123",
 "zuid":"11111111"
}