GET api/v1/FloorStops?FloorId={FloorId}

Returns a list of floor stops for a given Floor that the API token has rights to view.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
FloorId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of FloorStopViewModel
NameDescriptionTypeAdditional information
FacilityId

Represents the PK of the facility for the floor that the floor stop services

globally unique identifier

None.

FacilityName

Represents the name of the facility for the floor that the floor stop services

string

None.

FloorId

Represents the PK of the floor that the floor stop services

globally unique identifier

None.

FloorName

Represents the name of the floor that the floor stop services

string

None.

FloorStopId

Represents the PK of the floor stop

integer

None.

FloorStopName

Represents the name of the floor stop

string

None.

ElevatorBankId

Represents the PK of the elevator bank serving the floor stop

globally unique identifier

None.

ElevatorBankName

Represents the name of the elevator bank serving the floor stop

string

None.

ElevatorCarId

Represents the PK of the elevator serving the floor stop

globally unique identifier

None.

ElevatorCarName

Represents the name of the elevator serving the floor stop

string

None.

ElevatorDoorId

Represents the PK of the elevator door serving the floor stop

globally unique identifier

None.

ElevatorDoorName

Represents the name of the elevator door serving the floor stop

string

None.

Deleted

Represents the deleted status of the floor stop

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FacilityId": "60d2724e-48a3-4965-906c-c8ef0ef11f19",
    "FacilityName": "sample string 2",
    "FloorId": "d9e559b3-9002-4a58-bebd-7af28cb2aff0",
    "FloorName": "sample string 4",
    "FloorStopId": 5,
    "FloorStopName": "sample string 6",
    "ElevatorBankId": "2489a408-0288-4e43-add3-c91a33b0a3ef",
    "ElevatorBankName": "sample string 7",
    "ElevatorCarId": "f03c2042-2ee7-4e4a-b4d5-10c00ed97cec",
    "ElevatorCarName": "sample string 9",
    "ElevatorDoorId": "772c6142-de41-4748-b543-a58b61547b7a",
    "ElevatorDoorName": "sample string 11",
    "Deleted": true
  },
  {
    "FacilityId": "60d2724e-48a3-4965-906c-c8ef0ef11f19",
    "FacilityName": "sample string 2",
    "FloorId": "d9e559b3-9002-4a58-bebd-7af28cb2aff0",
    "FloorName": "sample string 4",
    "FloorStopId": 5,
    "FloorStopName": "sample string 6",
    "ElevatorBankId": "2489a408-0288-4e43-add3-c91a33b0a3ef",
    "ElevatorBankName": "sample string 7",
    "ElevatorCarId": "f03c2042-2ee7-4e4a-b4d5-10c00ed97cec",
    "ElevatorCarName": "sample string 9",
    "ElevatorDoorId": "772c6142-de41-4748-b543-a58b61547b7a",
    "ElevatorDoorName": "sample string 11",
    "Deleted": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfFloorStopViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
  <FloorStopViewModel>
    <Deleted>true</Deleted>
    <ElevatorBankId>2489a408-0288-4e43-add3-c91a33b0a3ef</ElevatorBankId>
    <ElevatorBankName>sample string 7</ElevatorBankName>
    <ElevatorCarId>f03c2042-2ee7-4e4a-b4d5-10c00ed97cec</ElevatorCarId>
    <ElevatorCarName>sample string 9</ElevatorCarName>
    <ElevatorDoorId>772c6142-de41-4748-b543-a58b61547b7a</ElevatorDoorId>
    <ElevatorDoorName>sample string 11</ElevatorDoorName>
    <FacilityId>60d2724e-48a3-4965-906c-c8ef0ef11f19</FacilityId>
    <FacilityName>sample string 2</FacilityName>
    <FloorId>d9e559b3-9002-4a58-bebd-7af28cb2aff0</FloorId>
    <FloorName>sample string 4</FloorName>
    <FloorStopId>5</FloorStopId>
    <FloorStopName>sample string 6</FloorStopName>
  </FloorStopViewModel>
  <FloorStopViewModel>
    <Deleted>true</Deleted>
    <ElevatorBankId>2489a408-0288-4e43-add3-c91a33b0a3ef</ElevatorBankId>
    <ElevatorBankName>sample string 7</ElevatorBankName>
    <ElevatorCarId>f03c2042-2ee7-4e4a-b4d5-10c00ed97cec</ElevatorCarId>
    <ElevatorCarName>sample string 9</ElevatorCarName>
    <ElevatorDoorId>772c6142-de41-4748-b543-a58b61547b7a</ElevatorDoorId>
    <ElevatorDoorName>sample string 11</ElevatorDoorName>
    <FacilityId>60d2724e-48a3-4965-906c-c8ef0ef11f19</FacilityId>
    <FacilityName>sample string 2</FacilityName>
    <FloorId>d9e559b3-9002-4a58-bebd-7af28cb2aff0</FloorId>
    <FloorName>sample string 4</FloorName>
    <FloorStopId>5</FloorStopId>
    <FloorStopName>sample string 6</FloorStopName>
  </FloorStopViewModel>
</ArrayOfFloorStopViewModel>