- Overview
- Authenticating
- SDKs
- Authentication
- Events
- Time off
- Access-credential
Submit presence events with BASIC auth
POST
/v1/presence/basic
EventsPresence
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 *****************
Body Params application/json
sourceId
string
required
presenceEvents
array[object (PresenceEventDto) {7}]
required
timestamp
string
required
Example:
2021-09-01T12:00:00.000Z
locationId
string
required
locationType
enum<string>
required
Allowed values:
levellocationplacespacezone
eventId
string
required
sourceUserId
string
optional
userId
string
optional
userEmail
string
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/presence/basic' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--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 2025-02-26 21:21:33