Get Authentication Token
Fetch the access token. The returned token is to be used for all the subsequent API Calls.
#
EndpointURL: https://portal.bihelper.tech/api/authenticateMethod: POST
#
HeadersKey | Value | Description |
---|---|---|
Content-Type | application/json | |
User-Agent | curl/7.68.0 | Set user agent header |
#
Body{ "username": "BH Username", "password": "BH Password"}
#
Curl Requestcurl --location --request POST 'https://portal.bihelper.tech/api/authenticate' \--header 'Content-Type: application/json' \--header 'User-Agent: curl/7.68.0' \--data-raw '{ "username": "BH Username", "password": "BH Password"}'
#
Responseid_token is the Auth Header
{"id_token":"eySeelrUqjMEsqA"}