POST - Add child organization to a Partner Portal
Purpose
The API creates a new child organization, along with the domain and other details and associates it with the partner portal. Only the users having Partner Admin role can use this API.
Request URL
http://mail.zoho.com/api/organization
Request Body (JSON Object)
Parameter | Data Type | Allowed Values | Description |
domainName* | String | Domain name | The domain of the child organization that needs to be added |
orgName | String | Organization name | The name of the child organization that needs to be added |
emailId* | String | Email ID | The contact email address of the child organization owner |
firstName* | String | First Name | The First Name of the Super Admin of the child organization |
lastName* | String | Last Name | The Last Name of the Super Admin of the child organization |
password | String | Password | The password of the Super Admin account of the child organization |
* - Mandatory parameters
Sample Request
The below request adds the domain zylkerchildnew.com to the Partner Portal.
{
"domainName": "zylkerchildnew.com",
"emailId":"clairestark@zoho.com",
"firstName":"Claire",
"lastName":"Stark"
}