GET api/v2/SanitationDevices/SanitationUsers?deviceId={deviceId}
Request
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| deviceId | string |
Required |
Response
DefaultResultOfListOfSanitation_User| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean | ||
| Messages | Collection of string | ||
| Data | Collection of Sanitation_User |
Response Format
application/json, text/json
Sample:
{
"Success": true,
"Messages": [
"sample string 1",
"sample string 2"
],
"Data": [
{
"Id": 1,
"Identification": "sample string 2",
"Login": "sample string 3",
"Password": "sample string 4",
"ServiceCenterId": 5,
"ServiceAreaId": 6,
"Salt": "sample string 7"
},
{
"Id": 1,
"Identification": "sample string 2",
"Login": "sample string 3",
"Password": "sample string 4",
"ServiceCenterId": 5,
"ServiceAreaId": 6,
"Salt": "sample string 7"
}
]
}
text/html
Sample:
{"Success":true,"Messages":["sample string 1","sample string 2"],"Data":[{"Id":1,"Identification":"sample string 2","Login":"sample string 3","Password":"sample string 4","ServiceCenterId":5,"ServiceAreaId":6,"Salt":"sample string 7"},{"Id":1,"Identification":"sample string 2","Login":"sample string 3","Password":"sample string 4","ServiceCenterId":5,"ServiceAreaId":6,"Salt":"sample string 7"}]}