Preise
News
Registrieren
Anmelden
PreiseÜber unsKontaktErfahrungsberichte
AnmeldenRegistrierenPasswort vergessen?
AGBDatenschutzbestimmungenSicherheitDatenschutzeinstellungenDSGVO
NewsFunktionenHilfezentrumSystemstatus
iOS-AppAndroid-AppWeb-App

Introduction

We offer a GraphQL API to connect with our system. Since this is the same API that we use for our apps, almost everything you can do in our apps can also be done using our API.

Endpoints

  • https://api.attendium.com/graphql

Schema

  • https://api.attendium.com/graphql/schema

Character encoding

UTF-8 is used across our platform.

Content type

The API supports JSON (application/json) which should be set as both "Content-Type" and "Accept" headers.

Example request

See Authentication for how to obtain an access token. Example request using curl:

curl -H "Authorization: Bearer your-access-token" -H "Content-Type: application/json" -d '{"query": "{ me { id } }"}' https://api.attendium.com/graphql

Authentication