# Operating Unit Admin - Create

| **API URL**     | {{url}}/admin-service/operating-unit/user-add |
| --------------- | --------------------------------------------- |
| **Method**      | POST                                          |
| **Description** | OU Admin create                               |

#### **Input** <a href="#operatingunitadmin-create-input" id="operatingunitadmin-create-input"></a>

| **Field Name** | **Type** | **Mandatory** | **Example**         |
| -------------- | -------- | ------------- | ------------------- |
| firstName      | String   | Yes           | Damoor              |
| phoneNumber    | String   | Yes           | 833XXX7890          |
| gender         | String   | No            | Male                |
| username       | String   | Yes           | <voltxxx@spice.mdt> |
| lastName       | String   | Yes           | Rane                |
| id(country)    | Integer  | Yes           | 3                   |
| id(timezone)   | Integer  | Yes           | 6                   |
| countryCode    | String   | Yes           | 232                 |

#### **Sample Input:** <a href="#operatingunitadmin-create-sampleinput" id="operatingunitadmin-create-sampleinput"></a>

{\
"firstName": "Damoor",\
"phoneNumber": "833XXX7890",\
"gender": "",\
"username": <voltxxx@spice.mdt>,\
"lastName": "Rane",\
"country": {\
"id": 3\
},\
"timezone": {\
"id": 6\
},\
"countryCode": "232",\
"tenantId": 147\
}

#### **Sample Output:** <a href="#operatingunitadmin-create-sampleoutput" id="operatingunitadmin-create-sampleoutput"></a>

```
{
    "message": "Operating Unit Admin created successfully."
}
```
