Skip to main content
POST
/
Agent
/
Account
/
AuthenticateJwt
Authenticate Jwt
curl --request POST \
  --url https://{host}/Agent/Account/AuthenticateJwt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>"
}
'
{
  "header": "<string>",
  "payload": "<string>",
  "signature": "<string>",
  "algorithm": "<string>",
  "claims": {},
  "type": "<string>",
  "issuer": "<string>",
  "subject": "<string>",
  "id": "<string>",
  "audience": [
    "<string>"
  ],
  "expiration": "2023-11-07T05:31:56Z",
  "notBefore": "2023-11-07T05:31:56Z",
  "issuedAt": "2023-11-07T05:31:56Z"
}

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.

Authentication

Requires a valid JWT bearer token.

Notes

This endpoint uses the request schema notation described in Pattern matching.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
token
string

Response

200 - application/json

Success

header
string
required
payload
string
required
signature
string
required
algorithm
string
required
claims
object
required
type
string
issuer
string
subject
string
id
string
audience
string[]
expiration
string<date-time>
notBefore
string<date-time>
issuedAt
string<date-time>