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:
{
"limit":15, "tenantId":146, "searchTerm":""
}
Output:
Field Name
Type
Comments
id(operating unit)
Integer
36
name
String
Nakuru
siteCount
Integer
8
tenantId
Integer
74
Sample Output:
{
"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
}
Last updated