Authentication

oauth2

Retrieve an Access Token with the OAuth 2.0 flows described below before accessing the API. Once you have an access token, send it in the Authorization HTTP header to authenticate with the API.

Flow type authorizationCode
Authorization URL https://api.todolist.local/oauth/authorize
Token URL https://api.todolist.local/oauth/token
Scopes
  • task:read: Authorization to Read tasks
  • task:create: Authorization to Create tasks
  • task:delete: Authorization to Delete tasks
  • task:update: Authorization to Update tasks