Calven
  1. Warehouse - HMAC 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 - HMAC Auth

User Actions Log

GET
/v1/analytics/change-log/user
The user action log contains events about user's plans and bookings. This information is helpful when investigating why a user may have been booked in a specific location.
It is recommended that you are familiar with Calven's data model before utilizing this endpoint. Users have 2 related features - plans and bookings. When a user's plan is updated to/from the office, they will also have their booking updated. Because of this, you will often see pairs of events together that are triggered from the same system action.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
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/change-log/user?startDate&endDate&userIds'

Responses

🟢200OK
application/json
Body

Example
[
    {
        "eventTime": "2022-06-05T00:00:00.000Z",
        "eventType": "calven.booking.fact.locationBookingCreated",
        "userId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "day": "2022-06-05T00:00:00.000Z",
        "reasonCode": "userSelected",
        "source": "admin",
        "locationId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "locationName": "New York",
        "zoneId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "zoneName": "New York",
        "placeId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "placeName": "New York",
        "bookingId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "placeBookingGroupId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "plan": "a",
        "bookingDepth": 1,
        "bookingIntentGroupId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "isTentative": true,
        "isBookingConfirmed": true,
        "updatedBy": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b"
    }
]
Modified at 2025-04-03 13:54:25
Previous
Presence
Built with