Authentication
Most IDaaS endpoints require an application-scoped Bearer token.Token exchange
POST /v1/auth/token exchanges your clientId and clientSecret for a JWT.
JSON request
Form request
Using the token
POST /v1/subjectsPOST /v1/tagsPOST /v1/transactionsGET /v1/wallet
Public endpoints
These endpoints do not require prior authentication:POST /v1/applicationsPOST /v1/auth/tokenGET /v1/tags/{tag}GET /v1/consent/**POST /v1/consent/**GET /v1/keys/idaas
Admin endpoints
Admin endpoints are under/v1/admin/** and require the ROLE_ADMIN mapping for the calling application.
Operational guidance
- Treat
clientSecretas a long-lived credential. - Rotate compromised credentials immediately.
- Cache the JWT only until it expires.
- Never expose application secrets in client-side code.