Auth API
Operations related to authentication and authorization
Auth API
The Auth API provides endpoints for authentication and authorization operations in the FinHub platform. These endpoints allow users to authenticate, manage their credentials, and handle authorization flows.
Available Endpoints
Method | Endpoint | Description |
---|---|---|
POST | /api/v2/auth/changePassword | Change user password |
POST | /api/v2/auth/token | Authenticate user or sandbox client |
Authentication Flow
The authentication process typically involves obtaining an access token through the /api/v2/auth/token
endpoint, which can then be used to authorize subsequent API calls. The token should be included in the Authorization header as a Bearer token.
Security
All Auth API endpoints require appropriate authentication and authorization. Ensure that you follow security best practices when handling authentication credentials and tokens.