# Operating Unit Dashboard - Account Admin

| **API URL**     | {{url}}/admin-service/operating-unit/list       |
| --------------- | ----------------------------------------------- |
| **Method**      | POST                                            |
| **Description** | Get Operating Unit list for Account admin login |

#### **Sample Input:** <a href="#operatingunitdashboard-accountadmin-sampleinput" id="operatingunitdashboard-accountadmin-sampleinput"></a>

{

"limit":15,\
"tenantId":146,\
"searchTerm":""

}

#### **Output:** <a href="#operatingunitdashboard-accountadmin-output" id="operatingunitdashboard-accountadmin-output"></a>

| **Field Name**       | **Type** | **Comments** |
| -------------------- | -------- | ------------ |
| `id(operating unit)` | Integer  | 36           |
| `name`               | String   | Nakuru       |
| `siteCount`          | Integer  | 8            |
| `tenantId`           | Integer  | 74           |

#### **Sample Output:** <a href="#operatingunitdashboard-accountadmin-sampleoutput" id="operatingunitdashboard-accountadmin-sampleoutput"></a>

```
{
    "message": "Operating unit fetched successfully.",
    "entity": null,
    "status": true,
    "entityList": [
        {
            "id": 36,
            "name": "Nakuru",
            "siteCount": 8,
            "tenantId": 74
        },
        {
            "id": 37,
            "name": "Mombasa",
            "siteCount": 6,
            "tenantId": 316
        }
    ],
    "responseCode": 200,
    "totalCount": 4
}
```
