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-List role.
Enums
eVisitorSource — VisitorSource values
Value Name 1 Administrator 2 NexIO 3 Customer
eVisitorHostApprovalStatus — HostApprovalStatus values
Value Name 1 NotRequired 2 Requested 3 Rejected 4 AcceptedAndHold 5 AcceptedAndGrant
Query Parameters
The page number to retrieve.
The number of records per page.
The property name to sort results by (e.g. Name, CreatedOn).
Sort direction. 1 for ascending, -1 for descending.
Filters
Filter by visitor full name.
Visitor_Coworker_CoworkerType
Filter by host coworker type.
Visitor_Coworker_FullName
Filter by host coworker full name.
Visitor_Coworker_CompanyName
Filter by host coworker company name.
Visitor_Coworker_BillingName
Filter by host coworker billing name.
Filter by host coworker email.
Visitor_Coworker_TeamNames
Filter by host coworker team names.
Filter by visitor source.
Visitor_HostApprovalStatus
Filter by host approval status.
Filter by location checked in at.
Filter by customer notes.
Filter by reason for visit.
Filter by visitor company name.
Filter by visitor phone number.
Filter by expected arrival date and time.
Filter by whether the visitor has arrived.
Filter by actual arrival date.
Filter by departure date.
Filter by whether this is a tour visit.
Filter by whether the visitor has agreed to terms.
Filter by whether the tour is confirmed.
Visitor_AccessControlScheduledJobId
Filter by Access Control Scheduled Job Id.
Filter by check in the visitor now.
Range Filters
from_Visitor_ExpectedArrival
Filter by expected arrival date and time greater than or equal to this value. Format: YYYY-MM-DDTHH:mm.
to_Visitor_ExpectedArrival
Filter by expected arrival date and time less than or equal to this value. Format: YYYY-MM-DDTHH:mm.
Filter by actual arrival date greater than or equal to this value. Format: YYYY-MM-DDTHH:mm.
Filter by actual arrival date less than or equal to this value. Format: YYYY-MM-DDTHH:mm.
from_Visitor_DepartureDate
Filter by departure date greater than or equal to this value. Format: YYYY-MM-DDTHH:mm.
Filter by departure date less than or equal to this value. Format: YYYY-MM-DDTHH:mm.
Filter records created on or after this date. Format: YYYY-MM-DDTHH:mm.
Filter records created on or before this date. Format: YYYY-MM-DDTHH:mm.
Filter records updated on or after this date. Format: YYYY-MM-DDTHH:mm.
Filter records updated on or before this date. Format: YYYY-MM-DDTHH:mm.
Code Examples
Simple listing
curl -X GET \
"https://spaces.nexudus.com/api/spaces/visitors?page=1&size=15&orderBy=FullName&dir=1" \
-H "Authorization: Bearer YOUR_TOKEN"
Filtering by FullName
curl -X GET \
"https://spaces.nexudus.com/api/spaces/visitors?Visitor_FullName=example-value&orderBy=FullName&dir=1" \
-H "Authorization: Bearer YOUR_TOKEN"
Range filters
curl -X GET \
"https://spaces.nexudus.com/api/spaces/visitors?from_Visitor_UpdatedOn=2025-01-01T00:00&to_Visitor_UpdatedOn=2025-12-31T23:59&orderBy=UpdatedOn&dir=-1" \
-H "Authorization: Bearer YOUR_TOKEN"
Response
200
The list of Visitor records matching the query. See the Get one Visitor endpoint for the full list of properties returned for each record.
Partial records — The listing endpoint returns a summary representation of each Visitor. The following fields are not included in the Records[] response: VisitorSource, HostApprovalStatus, CheckedInAt, Notes, CustomerNotes, ArrivalDate, DepartureDate, CheckInNow.To get all fields, fetch the full record using the Get one Visitor endpoint. Important for updates: When updating a record via PUT, always retrieve the full record with a GET request first, apply your changes to that complete data, and then send the updated record. Do not use data from a listing response as the base for a PUT request, as missing fields may be unintentionally cleared.
Number of records per page.
The field used for sorting.
The sort direction (1 = ascending, -1 = descending).
Index of the first item on the current page.
Index of the last item on the current page.
Total number of matching records across all pages.
Whether there is a next page of results.
Whether there is a previous page of results.
{
"Records" : [
{
"BusinessId" : 0 ,
"FullName" : "" ,
"Email" : "" ,
"CoworkerId" : null ,
"CoworkerCoworkerType" : null ,
"CoworkerFullName" : null ,
"CoworkerCompanyName" : null ,
"CoworkerBillingName" : null ,
"CoworkerEmail" : null ,
"CoworkerTeamNames" : null ,
"VisitorSource" : 0 ,
"HostApprovalStatus" : 0 ,
"VisitorCode" : null ,
"CheckedInAt" : null ,
"Notes" : null ,
"CustomerNotes" : null ,
"VisitReason" : null ,
"CompanyName" : null ,
"PhoneNumber" : null ,
"ExpectedArrival" : null ,
"Arrived" : false ,
"ArrivalDate" : null ,
"DepartureDate" : null ,
"Notified" : false ,
"Internal" : false ,
"IsTour" : false ,
"HasAgreedTerms" : false ,
"TourConfirmed" : false ,
"AccessControlScheduledJobId" : null ,
"CheckInNow" : false ,
"Id" : 87654321 ,
"UpdatedOn" : "2025-01-15T10:30:00Z" ,
"CreatedOn" : "2025-01-10T08:00:00Z" ,
"UniqueId" : "a1b2c3d4-e5f6-7890-abcd-ef1234567890" ,
"UpdatedBy" : "admin@example.com" ,
"IsNew" : false ,
"SystemId" : null ,
"ToStringText" : "Visitor Example" ,
"LocalizationDetails" : null ,
"CustomFields" : null
}
],
"CurrentPageSize" : 15 ,
"CurrentPage" : 1 ,
"CurrentOrderField" : "FullName" ,
"CurrentSortDirection" : 1 ,
"FirstItem" : 1 ,
"HasNextPage" : false ,
"HasPreviousPage" : false ,
"LastItem" : 1 ,
"PageNumber" : 1 ,
"PageSize" : 15 ,
"TotalItems" : 1 ,
"TotalPages" : 1
}