Skip to main content
GET
/
calendar
/
v3
/
rs
/
events
Retrieves a list of calendar events (v3)
curl --request GET \
  --url https://z52mnqg347.execute-api.eu-west-3.amazonaws.com/main/calendar/v3/rs/events \
  --header 'Authorization: Bearer <token>' \
  --header 'x-session-token: <x-session-token>'
{
  "data": [
    {
      "id": 123,
      "eventType": "<string>",
      "date": "<string>",
      "visitType": 123,
      "simplifiedStatus": "done",
      "sites": [
        {
          "id": 123,
          "name": "<string>"
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://api-documentation.kare-app.fr/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-session-token
string
required

Session token used for authenticating the request.

Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiIxMjM0NTY3ODkwIiwic2Vzc2lvbklkIjoiYWJjZGVmMTIzNDU2IiwiaWF0IjoxNjA1MDk3ODk5LCJleHAiOjE2MDUxODQyOTl9.4XRQ1iXDyvEj5LgPZHbmTmzOZs98M3YPOzgf3MhxjaI"

Query Parameters

startAt
string
required
endAt
string
required
types
string[]

Event types to include. Defaults to all types. Available: commission, interventionPreventive, interventionCurative, trainingExercice, trainingSession, trainingQualification, siteRuleDue, userRuleDue, recurringRoutine

Response

200 - application/json

List of calendar events sorted chronologically

data
object[]
required