Authentication Process
All API endpoints are authenticated using Bearer tokens and picked up from the specification file. Authentication credentials are required to access the API endpoints. Auth 2.0 JWT
Authentication API
Endpoint to obtain authenticate token
1. Obtaining Access Token
Before accessing any endpoints, clients need to obtain an access token through the authentication process, using Username and Password The access token serves as a credential to authenticate the client’s requests to the API.
POST /token
Request - Body
Response
Sample Request
2. Including Access Token in Requests
After obtaining the access token, clients include it in the Authorization header of subsequent requests as a Bearer token.
Sample Request
3.Conclusion
The authentication process using a Bearer token ensures secure access to the API endpoints while allowing clients to authenticate their requests efficiently. By following this process, clients can obtain, include, and refresh access tokens to interact with the API securely and seamlessly.