Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

API Reference

Ashwin Shenoy edited this page Aug 28, 2019 · 8 revisions

Authorisation APIs

Generate JWT Auth Token

Generates an authorisation token for the user

mutation TokenAuth($username: String!, $password: String!) {
  tokenAuth(username: $username, password: $password) {
    token
    refreshToken
  }
}

Read more about Authorisation APIs

Attendance

Log Attendance

mutation($username: String!, $password: String!, $start: DateTime!, $end: DateTime!, $token: String!, $list: String!)
{
  LogAttendance(username: $username, password: $password, start: $start, end: $end, token: $token, list: $list)
  {
    id
  }
}
Clone this wiki locally