Skip to content

API Reference

Ashwin Shenoy edited this page Feb 27, 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

Status Updates

mutation($data: [StatusInput]!, $token:String!)
{
  FetchDailyStatusUpdates(data: $data, token: $token)
  {
    ids
  }
}
Clone this wiki locally