IPAuthenticate user credentials and obtain a bearer access token. Token expires after 4 hours and must be included in the authorization header for all protected endpoints.
User credentials for authentication
User email address
User password
Authentication successful - Returns access and refresh tokens
Successful authentication response containing JWT tokens
Type of token (always Bearer)
JWT access token for API authentication.
Use in Authorization header as: Bearer <access_token>
Token is valid for 4 hours
JWT refresh token for obtaining new access tokens. Store securely and use when access token expires.
Was this page helpful?