We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
mutation logAttendance($username: String!, $password: String!, $list: [String]) { LogAttendance(username: $username, password: $password, list: $list) { id } }
mutation RecordLeaveToday($userId: String!, $reason: String!, $type: String!, $botToken: String!,$token:String!{ RecordLeaveToday(userId: $userId, reason: $reason, type: $type, botToken: $botToken, token: $token){ id } }