# Site Dashboard - Operating Unit Admin

| **API URL**     | {{url}}/admin-service/site/list                               |
| --------------- | ------------------------------------------------------------- |
| **Method**      | POST                                                          |
| **Description** | Get Site list on country level (pass operating unit tenantId) |

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

{

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

}

#### **Output:** <a href="#sitedashboard-operatingunitadmin-output" id="sitedashboard-operatingunitadmin-output"></a>

| **Field Name**      | **Type** | **Comments**        |
| ------------------- | -------- | ------------------- |
| `id`                | Number   | Site id             |
| `name`              | String   | Site name           |
| `tenantId`          | Number   | Site tenantId       |
| `operatingUnitName` | String   | Operating unit name |
| `cultureName`       | String   | Culture name        |
| `siteLevel`         | String   | Site level          |
| `siteType`          | String   | Clinic              |

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

```
{
    "message": "Site fetched successfully.",
    "entity": null,
    "status": true,
    "entityList": [
        {
            "id": 60,
            "name": "Holy Spirit Hospital SL",
            "tenantId": 56,
            "operatingUnitName": "Northern",
            "cultureName": "English - India",
            "siteLevel": "Level 3",
            "siteType": "Clinic"
        }
    ],
    "responseCode": 200,
    "totalCount": 1
}
```
