Skip to main content

Summary

All requests use Bearer tokens. Add the access token to your HTTP header and refresh it when it expires.

Set the header

Authorization: Bearer <access_token>

Refresh tokens

curl -X POST "https://api.sanka.com/api/token/refresh/" \
  -H "Content-Type: application/json" \
  -d '{ "refresh": "<refresh_token>" }'
Replace the access token in your integrations after refreshing.