Calven
  1. Warehouse - Basic Auth
Calven
  • Overview
  • Key Access Levels
  • Basic Authentication Overview
  • HMAC Authentication Overview
  • SDKs
  • Calven Data Models
  • HMAC Authentication
    • Generate a token with an API key and HMAC
      POST
    • Generate a token with an API key and client secret
      POST
  • Presence
    • Presence Overview
    • Submit presence events with BASIC auth
      POST
    • Submit presence events
      POST
  • Occupancy
    • Occupancy Overview
    • Submit occupancy events
      POST
  • Time off
    • Submit time off updates
      POST
  • Access Credentials
    • Submit access credentials
      POST
  • Warehouse - Basic Auth
    • Warehouse Overview
    • Users
      GET
    • Locations
      GET
    • Desks
      GET
    • Bookings & Attendance
      GET
    • Presence Details
      GET
    • User Actions Log
      GET
  • Warehouse - HMAC Auth
    • Warehouse Overview
    • Users
      GET
    • Locations
      GET
    • Desks
      GET
    • Bookings & Attendance
      GET
    • Presence
      GET
    • User Actions Log
      GET
  1. Warehouse - Basic Auth

Bookings & Attendance

GET
/v1/analytics/user-booking-attendance/basic
The bookings and attendance query returns a combination of data from three different models: attendance, bookings and plans. It is recommended that you read the Calven Data Models overview to get more details on those.

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Query Params

Request Code 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 GET 'https://api.calven.com/v1/analytics/user-booking-attendance/basic?startDate&endDate' \
--header 'Authorization: Basic Og=='

Responses

🟢200OK
application/json
Body

Example
[
    {
        "userId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "primaryLocationId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "primaryLocationName": "New York",
        "day": "2021-12-24T00:00:00.000Z",
        "plan": "a",
        "bookingDepth": 1,
        "attendanceType": "confirmed",
        "bookingLocationId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "bookingLocationName": "New York",
        "bookingLevelId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "bookingLevelName": "Level 1",
        "bookingZoneId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "bookingZoneName": "Engineering Zone",
        "bookingPlaceId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "bookingPlaceName": "WD1",
        "primaryGroupId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "primaryGroupName": "Engineering",
        "bookingGroupId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "bookingGroupName": "Engineering",
        "bookingSource": "user",
        "bookingReasonCode": "userSelected",
        "onWaitlist": true
    }
]
Modified at 2025-04-03 13:54:25
Previous
Desks
Next
Presence Details
Built with