Authentication

Token And Session

Connect-token flow and token usage on protected routes.

Get Access Token

Call the connect-token endpoint to get an access token:

/connect/token returns access_token and expired_at only.

For this flow, when the access token expires, request a new token from /connect/token.

Token Usage On Protected Routes

After you get an access token from connect-token, call protected routes like:

  • GET /api/v1/mobile_user/profile
  • PUT /api/v1/mobile_user/profile

using:

Authorization: Bearer <access_token>
Copyright © 2026