Presence Overview
Presence Event Example
{
"sourceId": "My System",
"presenceEvents": [
{
"timestamp": "2023-05-15T10:22:45Z",
"sourceUserId": "1341"
"userEmail": "SomeUser@somedomain.com",
"locationId":"D0FA9F18-6E7F-449A-8C50-30276AA9B63F",
"locationType": "location",
"eventId": "42FA8F0D-DBB6-42AC-8618-1865DD476769"
},
{
"timestamp": "2023-05-15T10:23:45Z",
"sourceUserId": "1342"
"userId": "2F6F955E-C1BB-483D-BAE8-56D15233F11B",
"locationId":"D0FA9F18-6E7F-449A-8C50-30276AA9B63F",
"locationType": "location",
"eventId": "71FA8F0D-DBB6-42AC-8618-1865DD476769"
}
]
}
Specific field descriptions
sourceId
is an identifier for your presence source. It is only sent once for each API call. It can be any text string and is not validated. It is useful in troubleshooting presence events when looking at the audit log of presence.timestamp
Each presence event has a timestamp
that indicates when the presence was detected (this can be in the past).eventId
is a unique ID value for the presence event. If errors are detected when sending the presence event, the problematic eventId will be returned in the response.locationId
specifies the point in the Calven location hierarchy where the presence is being reported.locationType
specifies the type of location represeneted by locationId
- Valid values are level
, location
, place
, space
or zone
.userId
and userEmail
- the user can be identified by their internal Calven userId value userId
or by their email/login userEmail
. Only one should be used as a time. Note that the userEmail
value is case sensitve and must match the value that has been provisioned into Calven.Programmatically retrieving details
/v1/users
endpointlocationId
can be retieved via the /v1/locations
endpointlevelId
, zoneId
and deskId
can be retrieved via the /v1/desks
endpointHandling errors
1.
4xx
response will be returned.2.
userName
for one of the events may not link to a user in Calven. In these cases, the specific event will be rejected and reported in the response, but all other events will be loaded.Modified at 2025-04-03 13:54:25