API Security
Details of API security to ensure authenticated and authorised access to APIs
Securing HCX Gateway APIs
Steps to obtain the API key:
POST /auth/realms/{realm-name}/protocol/openid-connect/token
Content-Type: application/x-www-form-urlencoded
Request-Body:
{
"client_id": "", // The client id of the authentication provider.
"username": "", // This is the primary email of the participant who is attempting to authenticate.
"password": "", // This is the password of the participant.
"grant_type": "password", // This field specifies the grant type that is being used to obtain the token.
}JWT Token Structure:
Revoking API Keys
Securing Participant System APIs
Last updated
Was this helpful?