Skip to main content
POST
Create Visitor
A Visitor represents a person visiting a location who is not a member. Visitors are registered with their name, contact details, expected arrival time, and the host (customer) they are visiting. Visitor management includes check-in/check-out tracking and optional host approval workflows.

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the Visitor-Create role.

Enums

Request Body

Required Fields

integer
required
ID of the business linked to this record.
string
required
Visitor full name.
string
required
Visitor email.
integer
required
Visitor source. Defaults to eVisitorSource.Administrator.
integer
required
Host approval status. Defaults to eVisitorHostApprovalStatus.NotRequired.
string
required
Expected arrival date and time.

Optional Fields

integer
ID of the coworker linked to this record.
string
Location checked in at.
string
Optional notes or comments about this visitor.
string
Customer notes.
string
Reason for visit.
string
Visitor company name.
string
Visitor phone number.
boolean
Whether the visitor has arrived.
string
Actual arrival date.
string
Departure date.
boolean
Whether notified is enabled.
boolean
Whether internal is enabled.
boolean
Whether this is a tour visit.
boolean
Whether the visitor has agreed to terms.
boolean
Whether the tour is confirmed.
string
ID of the access control scheduled job associated with this record.
boolean
Check in the visitor now.

Code Examples

Response

200

integer
HTTP status code. 200 on success.
string
A human-readable message confirming the creation.
object
Contains the Id of the newly created record.
boolean
true if the visitor was created successfully.
array
null on success.
Example Response

400

string
A summary of the validation error(s), in the format PropertyName: error message.
any
null on validation failure.
object[]
Array of validation errors.
boolean
false when the request fails validation.
Example Response