GetAllVisitorTypes
Overview
Returns a list of VisitorViewModels that the API token has rights to view.
Request Information
Method
POST - api/Visitor/RemoveVisitorRequest/{VisitorRequestId}
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of VisitorTypeViewModel
Name | Description | Type | Additional information |
---|---|---|---|
VisitorTypeId |
Represents the PK of an existing Visitor Request Type in BluSKY (static list) |
globally unique identifier |
None. |
Description |
Represents the description of an existing Visitor Request Type in BluSKY (static list) |
string |
None. |
Response Formats
JSON
[ { "VisitorTypeId": "bd0b3dbf-b9c1-416a-a880-ec658d6fd3b7", "Description": "sample string 2" }, { "VisitorTypeId": "bd0b3dbf-b9c1-416a-a880-ec658d6fd3b7", "Description": "sample string 2" } ]
XML
<ArrayOfVisitorTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BluSKYWebAPI.Controllers"> <VisitorTypeViewModel> <Description>sample string 2</Description> <VisitorTypeId>bd0b3dbf-b9c1-416a-a880-ec658d6fd3b7</VisitorTypeId> </VisitorTypeViewModel> <VisitorTypeViewModel> <Description>sample string 2</Description> <VisitorTypeId>bd0b3dbf-b9c1-416a-a880-ec658d6fd3b7</VisitorTypeId> </VisitorTypeViewModel> </ArrayOfVisitorTypeViewModel>