Overview
Allows a service to authenticate a JWT token issued by the broker. This resource does not require authenticated access. Any service that receives a JWT token issued by the broker can request the broker to validate the token, and to return parsed information available in the token.HTTP request
POST /Agent/Account/AuthenticateJwt
Authentication
Requires a valid JWT bearer token.Request (JSON)
Input parameters
| Parameter | Description |
|---|---|
| PToken | JWT token to validate. |
Response (JSON)
Response parameters
| Parameter | Description |
|---|---|
| PJwt | A token representing the login to the account. This token is seant as a Bearer token in requests requiring authentication. |
| PPayload | Payload portion of the token. |
| PSignature | Signature portion of the token |
| PAlgorithm | Algorithm used to sign token. |
| PType | Type of token. |
| PIssuer | Issuer of token. |
| PSubject | Subject of the token. |
| PId | Identifier of token. |
| PAudience | Audience for token. |
| PExpiration | When token expires. |
| PNotBefore | If token has a not-before timestamp. |
| PIssuedAt | When token was created. |