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

Users

GET
/v1/analytics/users/basic
analytics

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 *****************

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 GET 'https://api.calven.com/v1/analytics/users/basic' \
--header 'Authorization: Basic Og=='

Responses

🟢200OK
application/json
Body
array of:
email
object 
required
The email address of the user
Example:
johndoe@calven.com
firstName
object 
required
The first name of the user
Example:
John
lastName
object 
required
The last name of the user
Example:
Doe
onboarded
boolean 
required
Whether the user has completed onboarding
Example:
true
primaryGroupId
object 
required
The primary group id of the user
Example:
3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b
primaryLocationId
object 
required
The primary location id of the user
Example:
3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b
status
string 
required
The status of the user
Example:
active
userId
string 
required
The id of the user
Example:
3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b
userName
string 
required
The username of the user
Example:
johndoe@calven.com
Example
[
    {
        "email": "johndoe@calven.com",
        "firstName": "John",
        "lastName": "Doe",
        "onboarded": true,
        "primaryGroupId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "primaryLocationId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "status": "active",
        "userId": "3a2b0fd7-5f5a-4472-ab61-a2cc1784d38b",
        "userName": "johndoe@calven.com"
    }
]
Modified at 2025-04-03 13:54:25
Previous
Warehouse Overview
Next
Locations
Built with