GET api/v1/ACSystems?ACSystemId={ACSystemId}

Returns a single SystemViewModels that the API token has rights to view based on a parameterized PK.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ACSystemId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

SystemViewModel
NameDescriptionTypeAdditional information
ACSystemId

Represents the PK of an existing Access Control System in BluSKY

globally unique identifier

None.

Name

Represents the name of an existing Facility in BluSKY

string

None.

Deleted

Represents whether the Facility is deleted or not.

boolean

None.

CustomerId

Represents the PK of an existing Customer/SystemOwner in BluSKY

globally unique identifier

None.

CustomerName

Represents the name of an existing Customer (System Owner) that owns the Access Control System in BluSKY

string

None.

IntegratorId

Represents the PK of an existing Integrator in BluSKY that maintains the system

globally unique identifier

None.

IntegratorName

Represents the name of an existing Integrator in BluSKY that maintains the system

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ACSystemId": "44955638-2d7b-4709-bf2c-e220cb0e3513",
  "Name": "sample string 2",
  "Deleted": true,
  "CustomerId": "bf08334b-facd-4041-8f39-89830a8531d1",
  "CustomerName": "sample string 5",
  "IntegratorId": "6fdea5e4-5fbc-42c3-947a-b983686996bd",
  "IntegratorName": "sample string 7"
}

application/xml, text/xml

Sample:
<SystemViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
  <ACSystemId>44955638-2d7b-4709-bf2c-e220cb0e3513</ACSystemId>
  <CustomerId>bf08334b-facd-4041-8f39-89830a8531d1</CustomerId>
  <CustomerName>sample string 5</CustomerName>
  <Deleted>true</Deleted>
  <IntegratorId>6fdea5e4-5fbc-42c3-947a-b983686996bd</IntegratorId>
  <IntegratorName>sample string 7</IntegratorName>
  <Name>sample string 2</Name>
</SystemViewModel>