RemoveFloorStopAccess
Overview
Removes Floor Stop Access from an existing User. Returns Success/Error code.Removes Floor Stop Access from an existing User. Returns Success/Error code.
Request Information
Method
POST - api/Person/RemoveFloorStopAccess
URI Parameters
None.
Body Parameters
RemoveFloorStopAccessViewModel
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | Required: Represents the PK of an existing User | globally unique identifier | None. |
| FloorStopId | Required: Represents the PK of an existing Floor Stop that you want to remove from this User | integer | None. |
JSON
{
"UserId": "62cf1441-35bd-48ff-ae0d-ff78de6f4a20",
"FloorStopId": 2
}
XML
<RemoveFloorStopAccessViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BluSKYWebAPI.Controllers">
<FloorStopId>2</FloorStopId>
<UserId>62cf1441-35bd-48ff-ae0d-ff78de6f4a20</UserId>
</RemoveFloorStopAccessViewModel>
Response Information
Resource Description
Result
| Name | Description | Type | Additional information |
|---|---|---|---|
| ResultCode | Represents the result code | integer | None. |
| Description | Represents a description of the result code | string | None. |
Response Formats
JSON
{
"ResultCode": 1,
"Description": "sample string 2"
}
XML
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BluSKYWebAPI.Controllers">
`````<Description>``````sample string 2</Description>
`<ResultCode>`1</ResultCode>
</Result>