- Overview
- Authenticating
- SDKs
- Authentication
- Events
- Time off
- Access-credential
Submit occupancy events
POST
/v1/occupancy
EventsOccupancy
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
sourceId
string
required
occupancyEvents
array[object (OccupancyEventDto) {6}]
required
timestamp
string
required
Example:
2021-09-01T12:00:00.000Z
locationId
string
required
locationType
enum<string>
required
Allowed values:
levellocationplacespacezone
eventId
string
required
occupied
boolean
required
occupancy
number
optional
Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.calven.com/v1/occupancy' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
sourceId
string
required
timestamp
string
required
Example:
2021-09-01T12:00:00.000Z
results
array[object (EventResultDto) {3}]
required
eventId
string
required
resultCode
number
required
message
string
required
Example
{
"sourceId": "string",
"timestamp": "2021-09-01T12:00:00.000Z",
"results": [
{
"eventId": "string",
"resultCode": 0,
"message": "string"
}
]
}
🟠401Payload when auth header is missing or invalid
Modified at 2024-04-05 01:14:16