Documentation Index
Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
Use this file to discover all available pages before exploring further.
A Checkin records when a customer accessed a location. To check in, a customer must hold a valid pass (TimePass entity) that covers the location and the time of the check-in.
If the customer does not have a valid pass but the location or network has one or more Pay As You Go passes configured, a pass is automatically assigned and charged to the customer at check-in time.
Check-ins can be created manually, or opened and closed automatically by NexIO (the front-desk Nexudus tablet app), door-access systems, or IT-network integrations. The Source field indicates how the check-in was created.
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 Checkin-Read role.
Path Parameters
The Id of the Checkin record to retrieve.
Code Examples
curl -X GET \
"https://spaces.nexudus.com/api/spaces/checkins/87654321" \
-H "Authorization: Bearer YOUR_TOKEN"
Response
200
Full name of the checked-in customer.
Name of the location where the check-in takes place.
How the check-in was created (e.g. Manual, DoorAccess, NetworkActivity, NexIO Tile, or Sensor). See eCheckinSource enum values: 0 = None, 1 = Manual, 2 = DoorAccess, 3 = NetworkActivity, 4 = Tile, 5 = Sensor.
Date and time the customer checked in.
Date and time the customer checked out. Null while the check-in is still open.
Counts Towards Plan Limits.
MAC addresses of devices detected during a network-activity check-in.
Teams the customer belonged to when the check-in was recorded.
Product (tariff) assigned to the customer when the check-in was recorded.
Unique record identifier.
Date and time the record was created (ISO 8601).
Date and time the record was last updated (ISO 8601).
Email of the user who last updated this record.
Whether the record was recently created.
External system identifier.
{
"CoworkerId": null,
"CoworkerFullName": null,
"BusinessId": 0,
"BusinessName": null,
"Source": 0,
"FromTime": "2025-01-15T10:30:00Z",
"ToTime": null,
"CountsTowardsPlanLimits": false,
"CoworkerTimePassGuid": null,
"AutoCheckout": false,
"LastActivity": null,
"MacAddresses": null,
"TeamsAtTheTimeOfCheckin": null,
"TariffAtTheTimeOfCheckin": null,
"ValidateCheckinJobId": null,
"FromTimeLocal": null,
"ToTimeLocal": null,
"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": "Checkin Example",
"LocalizationDetails": null,
"CustomFields": null
}