Request
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 Code Samples
curl --location --request GET 'https://api.calven.com/v1/analytics/users/basic' \
--header 'Authorization: Basic Og=='
Responses
application/json [
{
"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