POST api/v1/VisitorRequests
Adds a single Visitor Request to the system. Returns Success/Error code plus primary key of Visitor Request added.
Request Information
URI Parameters
None.
Body Parameters
AddUpdateVisitorRequestViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| VisitorRequestId |
Conditional: Represents the PK of an existing Visitor Request in BluSKY if calling an Update method. Not used for Add methods |
globally unique identifier |
None. |
| GuestPersonId |
Conditional: Represents the PK of an existing Visitor Request Guest in BluSKY if calling an Update method. Not used for Add methods |
globally unique identifier |
None. |
| GuestFirstName |
Required: Represents the Guest's first/given name. Max Length = 60 |
string |
Max length: 60 |
| GuestLastName |
Required: Represents the Guest's last name / surname. Max Length = 60 |
string |
Max length: 60 |
| GuestEmail |
Optional: Represents the email address of the Guest |
string |
None. |
| GuestPhone |
Optional: Represents the phone number of the Guest |
string |
None. |
| GuestCompanyName |
Optional: Represents the name of the occupancy or vendor instance that the Guest belongs to |
string |
None. |
| GroupHashTag |
Optional: Represents the group name that the Guest may belong to (if provided) |
string |
None. |
| VisitationPattern |
Required: Represents the visitation pattern that has been requested for the Guest |
string |
None. |
| Message |
Optional: Represents a supplemental message that will be viewable by Security/Reception when the Guest arrives |
string |
None. |
| VisitorTypeId |
Required: Represents a supplemental message that will be viewable by Security/Reception when the Guest arrives. Retrieve possible values from /Visitor/GetAllVisitorTypes |
globally unique identifier |
None. |
| HostPersonId |
Required: Represents the PK of an existing Visitor Request Host in BluSKY. Used for both Add and Update |
globally unique identifier |
None. |
| FacilityId |
Required: Represents the PK of the facility that the Guest is expected at. Retrieve possible values from /Facility/GetAllFacilities |
globally unique identifier |
None. |
| ACSystemId |
Required: Represents the PK of the Access Control System that the Host is located in. Retrieve possible values from /ACSystem/GetAllSystems |
globally unique identifier |
None. |
| Floors |
Optional: Represents the list of floors that the Guest will be allowed to visit if Access Levels are not being used. |
Collection of FloorsViewModel |
None. |
| RequestedAccessLevelId |
Optional: Represents an Access Level assignments requested by the Requestor for the Visitor. Retrieve possible values from /AccessLevel/GetAllAccessLevels |
integer |
None. |
| Deleted |
Required: Represents whether the Visitor Request is deleted or not. Should be false for Add methods. |
boolean |
None. |
Request Formats
application/json, text/json
{
"VisitorRequestId": "d5c1651f-9f05-4671-9e84-8f351c389a41",
"GuestPersonId": "11a241ea-1c33-4f55-bf7a-9a9d05ccde4b",
"GuestFirstName": "sample string 1",
"GuestLastName": "sample string 2",
"GuestEmail": "sample string 3",
"GuestPhone": "sample string 4",
"GuestCompanyName": "sample string 5",
"GroupHashTag": "sample string 6",
"VisitationPattern": "sample string 7",
"Message": "sample string 8",
"VisitorTypeId": "112a53bd-68be-4eb5-8191-14f42ce4e2a7",
"HostPersonId": "b0b6fb76-8246-4282-a7ce-3349c7359959",
"FacilityId": "fba216be-c983-4416-b56b-f18dfea01081",
"ACSystemId": "6cace12a-f0cb-47e9-ab3e-141fd6505e5a",
"Floors": [
{
"FloorId": "56f12524-343b-482e-84f4-11f1ae691ea1",
"Name": "sample string 2",
"PhysicalSequence": 3,
"Deleted": true
},
{
"FloorId": "56f12524-343b-482e-84f4-11f1ae691ea1",
"Name": "sample string 2",
"PhysicalSequence": 3,
"Deleted": true
}
],
"RequestedAccessLevelId": 1,
"Deleted": true
}
application/xml, text/xml
<AddUpdateVisitorRequestViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
<ACSystemId>6cace12a-f0cb-47e9-ab3e-141fd6505e5a</ACSystemId>
<Deleted>true</Deleted>
<FacilityId>fba216be-c983-4416-b56b-f18dfea01081</FacilityId>
<Floors>
<FloorsViewModel>
<Deleted>true</Deleted>
<FloorId>56f12524-343b-482e-84f4-11f1ae691ea1</FloorId>
<Name>sample string 2</Name>
<PhysicalSequence>3</PhysicalSequence>
</FloorsViewModel>
<FloorsViewModel>
<Deleted>true</Deleted>
<FloorId>56f12524-343b-482e-84f4-11f1ae691ea1</FloorId>
<Name>sample string 2</Name>
<PhysicalSequence>3</PhysicalSequence>
</FloorsViewModel>
</Floors>
<GroupHashTag>sample string 6</GroupHashTag>
<GuestCompanyName>sample string 5</GuestCompanyName>
<GuestEmail>sample string 3</GuestEmail>
<GuestFirstName>sample string 1</GuestFirstName>
<GuestLastName>sample string 2</GuestLastName>
<GuestPersonId>11a241ea-1c33-4f55-bf7a-9a9d05ccde4b</GuestPersonId>
<GuestPhone>sample string 4</GuestPhone>
<HostPersonId>b0b6fb76-8246-4282-a7ce-3349c7359959</HostPersonId>
<Message>sample string 8</Message>
<RequestedAccessLevelId>1</RequestedAccessLevelId>
<VisitationPattern>sample string 7</VisitationPattern>
<VisitorRequestId>d5c1651f-9f05-4671-9e84-8f351c389a41</VisitorRequestId>
<VisitorTypeId>112a53bd-68be-4eb5-8191-14f42ce4e2a7</VisitorTypeId>
</AddUpdateVisitorRequestViewModel>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
AddUpdateVisitorRequestResult| Name | Description | Type | Additional information |
|---|---|---|---|
| GuestPersonId |
Represents a person ID of a visitor |
globally unique identifier |
None. |
| VisitorRequestInstances |
Contains all existing future visitor request instances for a given request |
Collection of VisitorRequestInstanceViewModel |
None. |
| Value |
Represents the PK value that was created as a result of an add |
globally unique identifier |
None. |
| ResultCode |
Represents the result code |
integer |
None. |
| Description |
Represents a description of the result code |
string |
None. |
Response Formats
application/json, text/json
{
"GuestPersonId": "2a65dcbe-6b86-474f-beda-b44bcbe5d5bd",
"VisitorRequestInstances": [
{
"VisitorRequestInstanceId": "bc2cb178-383a-492d-97c4-bb0682381948",
"VisitorRequestId": "e17f9c1f-4231-4485-a42a-d98432a83837",
"DateExpected": "2026-09-04T11:28:51.1811975+00:00",
"DateTimeArrived": "2026-09-04T11:28:51.1811975+00:00",
"AssignedAccessLevelId": 1,
"FirstName": "sample string 4",
"LastName": "sample string 5",
"MiddleInitial": "sample string 6",
"GuestCompany": "sample string 7",
"HostPersonId": "1ed63099-23e5-4c40-818c-baadaaf9f523",
"Message": "sample string 9",
"sVisitorTypeId": "7fd94a5d-c338-4a96-b50a-1fadf4540bdd",
"GroupHashTag": "sample string 11",
"VisitorStatus": 0,
"Deleted": true,
"Card": {
"PersonCardId": "2d410aac-05e9-40c4-b94f-70353c465db5",
"CardName": "sample string 2",
"CardId": "e590b895-8835-4d13-a336-c01783bbbf97",
"CardType": 4,
"CardACSystemId": "9331e488-ca9c-40e3-bca8-d7dec86fb40e",
"CardACSystemName": "sample string 6",
"InternalCardNumber": 7,
"ExternalCardNumber": "sample string 8",
"CardSerialNumber": 1,
"FacilityCode": 9,
"IssueCode": 10,
"PIN": "sample string 11",
"Deleted": true,
"HidInvitationCode": "sample string 13",
"InvitationRedeemedDateTime": "2026-09-04T11:28:51.1811975+00:00",
"DateInserted": "2026-09-04T11:28:51.1811975+00:00",
"DateUpdated": "2026-09-04T11:28:51.1811975+00:00",
"CardActivationStartDateTime": "2026-09-04T11:28:51.1811975+00:00",
"CardDeactivationStartDateTime": "2026-09-04T11:28:51.1811975+00:00",
"CardUserFlags": 1,
"EncryptedMobileCredentials": [
{
"MobileKeySetId": "b2f44df3-fa7d-4f87-8aca-646e4626dd37",
"KeyIndex": 2,
"EncryptedCredential": "sample string 3"
},
{
"MobileKeySetId": "b2f44df3-fa7d-4f87-8aca-646e4626dd37",
"KeyIndex": 2,
"EncryptedCredential": "sample string 3"
}
],
"CredentialType": 1
}
},
{
"VisitorRequestInstanceId": "bc2cb178-383a-492d-97c4-bb0682381948",
"VisitorRequestId": "e17f9c1f-4231-4485-a42a-d98432a83837",
"DateExpected": "2026-09-04T11:28:51.1811975+00:00",
"DateTimeArrived": "2026-09-04T11:28:51.1811975+00:00",
"AssignedAccessLevelId": 1,
"FirstName": "sample string 4",
"LastName": "sample string 5",
"MiddleInitial": "sample string 6",
"GuestCompany": "sample string 7",
"HostPersonId": "1ed63099-23e5-4c40-818c-baadaaf9f523",
"Message": "sample string 9",
"sVisitorTypeId": "7fd94a5d-c338-4a96-b50a-1fadf4540bdd",
"GroupHashTag": "sample string 11",
"VisitorStatus": 0,
"Deleted": true,
"Card": {
"PersonCardId": "2d410aac-05e9-40c4-b94f-70353c465db5",
"CardName": "sample string 2",
"CardId": "e590b895-8835-4d13-a336-c01783bbbf97",
"CardType": 4,
"CardACSystemId": "9331e488-ca9c-40e3-bca8-d7dec86fb40e",
"CardACSystemName": "sample string 6",
"InternalCardNumber": 7,
"ExternalCardNumber": "sample string 8",
"CardSerialNumber": 1,
"FacilityCode": 9,
"IssueCode": 10,
"PIN": "sample string 11",
"Deleted": true,
"HidInvitationCode": "sample string 13",
"InvitationRedeemedDateTime": "2026-09-04T11:28:51.1811975+00:00",
"DateInserted": "2026-09-04T11:28:51.1811975+00:00",
"DateUpdated": "2026-09-04T11:28:51.1811975+00:00",
"CardActivationStartDateTime": "2026-09-04T11:28:51.1811975+00:00",
"CardDeactivationStartDateTime": "2026-09-04T11:28:51.1811975+00:00",
"CardUserFlags": 1,
"EncryptedMobileCredentials": [
{
"MobileKeySetId": "b2f44df3-fa7d-4f87-8aca-646e4626dd37",
"KeyIndex": 2,
"EncryptedCredential": "sample string 3"
},
{
"MobileKeySetId": "b2f44df3-fa7d-4f87-8aca-646e4626dd37",
"KeyIndex": 2,
"EncryptedCredential": "sample string 3"
}
],
"CredentialType": 1
}
}
],
"Value": "5a43eb85-3458-40c2-a4fd-5fa6eb544250",
"ResultCode": 3,
"Description": "sample string 4"
}
application/xml, text/xml
<AddUpdateVisitorRequestResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
<Description>sample string 4</Description>
<HttpStatusCode>Continue</HttpStatusCode>
<ResultCode>3</ResultCode>
<Value>5a43eb85-3458-40c2-a4fd-5fa6eb544250</Value>
<GuestPersonId>2a65dcbe-6b86-474f-beda-b44bcbe5d5bd</GuestPersonId>
<VisitorRequestInstances>
<VisitorRequestInstanceViewModel>
<AssignedAccessLevelId>1</AssignedAccessLevelId>
<Card>
<CardACSystemId>9331e488-ca9c-40e3-bca8-d7dec86fb40e</CardACSystemId>
<CardACSystemName>sample string 6</CardACSystemName>
<CardActivationStartDateTime>2026-09-04T11:28:51.1811975+00:00</CardActivationStartDateTime>
<CardDeactivationStartDateTime>2026-09-04T11:28:51.1811975+00:00</CardDeactivationStartDateTime>
<CardId>e590b895-8835-4d13-a336-c01783bbbf97</CardId>
<CardName>sample string 2</CardName>
<CardSerialNumber>1</CardSerialNumber>
<CardType>4</CardType>
<CardUserFlags>ActiveCardholderRecord</CardUserFlags>
<CredentialType>Proximity</CredentialType>
<DateInserted>2026-09-04T11:28:51.1811975+00:00</DateInserted>
<DateUpdated>2026-09-04T11:28:51.1811975+00:00</DateUpdated>
<EncryptedMobileCredentials>
<EncryptedCredentialData>
<EncryptedCredential>sample string 3</EncryptedCredential>
<KeyIndex>2</KeyIndex>
<MobileKeySetId>b2f44df3-fa7d-4f87-8aca-646e4626dd37</MobileKeySetId>
</EncryptedCredentialData>
<EncryptedCredentialData>
<EncryptedCredential>sample string 3</EncryptedCredential>
<KeyIndex>2</KeyIndex>
<MobileKeySetId>b2f44df3-fa7d-4f87-8aca-646e4626dd37</MobileKeySetId>
</EncryptedCredentialData>
</EncryptedMobileCredentials>
<ExternalCardNumber>sample string 8</ExternalCardNumber>
<FacilityCode>9</FacilityCode>
<HidInvitationCode>sample string 13</HidInvitationCode>
<InternalCardNumber>7</InternalCardNumber>
<InvitationRedeemedDateTime>2026-09-04T11:28:51.1811975+00:00</InvitationRedeemedDateTime>
<IssueCode>10</IssueCode>
<PIN>sample string 11</PIN>
<PersonCardId>2d410aac-05e9-40c4-b94f-70353c465db5</PersonCardId>
</Card>
<DateExpected>2026-09-04T11:28:51.1811975+00:00</DateExpected>
<DateTimeArrived>2026-09-04T11:28:51.1811975+00:00</DateTimeArrived>
<Deleted>true</Deleted>
<FirstName>sample string 4</FirstName>
<GroupHashTag>sample string 11</GroupHashTag>
<GuestCompany>sample string 7</GuestCompany>
<HostPersonId>1ed63099-23e5-4c40-818c-baadaaf9f523</HostPersonId>
<LastName>sample string 5</LastName>
<Message>sample string 9</Message>
<MiddleInitial>sample string 6</MiddleInitial>
<VisitorRequestId>e17f9c1f-4231-4485-a42a-d98432a83837</VisitorRequestId>
<VisitorRequestInstanceId>bc2cb178-383a-492d-97c4-bb0682381948</VisitorRequestInstanceId>
<VisitorStatus>NotCheckedIn</VisitorStatus>
<sVisitorTypeId>7fd94a5d-c338-4a96-b50a-1fadf4540bdd</sVisitorTypeId>
</VisitorRequestInstanceViewModel>
<VisitorRequestInstanceViewModel>
<AssignedAccessLevelId>1</AssignedAccessLevelId>
<Card>
<CardACSystemId>9331e488-ca9c-40e3-bca8-d7dec86fb40e</CardACSystemId>
<CardACSystemName>sample string 6</CardACSystemName>
<CardActivationStartDateTime>2026-09-04T11:28:51.1811975+00:00</CardActivationStartDateTime>
<CardDeactivationStartDateTime>2026-09-04T11:28:51.1811975+00:00</CardDeactivationStartDateTime>
<CardId>e590b895-8835-4d13-a336-c01783bbbf97</CardId>
<CardName>sample string 2</CardName>
<CardSerialNumber>1</CardSerialNumber>
<CardType>4</CardType>
<CardUserFlags>ActiveCardholderRecord</CardUserFlags>
<CredentialType>Proximity</CredentialType>
<DateInserted>2026-09-04T11:28:51.1811975+00:00</DateInserted>
<DateUpdated>2026-09-04T11:28:51.1811975+00:00</DateUpdated>
<EncryptedMobileCredentials>
<EncryptedCredentialData>
<EncryptedCredential>sample string 3</EncryptedCredential>
<KeyIndex>2</KeyIndex>
<MobileKeySetId>b2f44df3-fa7d-4f87-8aca-646e4626dd37</MobileKeySetId>
</EncryptedCredentialData>
<EncryptedCredentialData>
<EncryptedCredential>sample string 3</EncryptedCredential>
<KeyIndex>2</KeyIndex>
<MobileKeySetId>b2f44df3-fa7d-4f87-8aca-646e4626dd37</MobileKeySetId>
</EncryptedCredentialData>
</EncryptedMobileCredentials>
<ExternalCardNumber>sample string 8</ExternalCardNumber>
<FacilityCode>9</FacilityCode>
<HidInvitationCode>sample string 13</HidInvitationCode>
<InternalCardNumber>7</InternalCardNumber>
<InvitationRedeemedDateTime>2026-09-04T11:28:51.1811975+00:00</InvitationRedeemedDateTime>
<IssueCode>10</IssueCode>
<PIN>sample string 11</PIN>
<PersonCardId>2d410aac-05e9-40c4-b94f-70353c465db5</PersonCardId>
</Card>
<DateExpected>2026-09-04T11:28:51.1811975+00:00</DateExpected>
<DateTimeArrived>2026-09-04T11:28:51.1811975+00:00</DateTimeArrived>
<Deleted>true</Deleted>
<FirstName>sample string 4</FirstName>
<GroupHashTag>sample string 11</GroupHashTag>
<GuestCompany>sample string 7</GuestCompany>
<HostPersonId>1ed63099-23e5-4c40-818c-baadaaf9f523</HostPersonId>
<LastName>sample string 5</LastName>
<Message>sample string 9</Message>
<MiddleInitial>sample string 6</MiddleInitial>
<VisitorRequestId>e17f9c1f-4231-4485-a42a-d98432a83837</VisitorRequestId>
<VisitorRequestInstanceId>bc2cb178-383a-492d-97c4-bb0682381948</VisitorRequestInstanceId>
<VisitorStatus>NotCheckedIn</VisitorStatus>
<sVisitorTypeId>7fd94a5d-c338-4a96-b50a-1fadf4540bdd</sVisitorTypeId>
</VisitorRequestInstanceViewModel>
</VisitorRequestInstances>
</AddUpdateVisitorRequestResult>