Skip to main content

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

NameDescriptionTypeAdditional information
UserIdRequired: Represents the PK of an existing Userglobally unique identifierNone.
FloorStopIdRequired: Represents the PK of an existing Floor Stop that you want to remove from this UserintegerNone.

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

NameDescriptionTypeAdditional information
ResultCodeRepresents the result codeintegerNone.
DescriptionRepresents a description of the result codestringNone.

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>