Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Page Properties
hiddentrue
idDONE

Product Version
Report Note
Assignee

Resources & Remarks

Modification History

NameDateProduct VersionAction
Antje14 MAR 20222021 AutumnPage created.


...

As of Version

product version 2021 Autumn

Request Methodsupported methods: GET, HEAD, POST, PUT, PATCH, DELETE, OPTIONS
Response FormatJSON
Description


Excerpt

Validates the internal JSON Web Token (JWT) that is assigned to an HTTP request.


If the signature of the JWT matches its header and payload, the validation will be successful and the response body contains true. If the validation fails, the response body contains false.
>> Structure of internal JWTs

In order to activate the validation, manual configuration is required.
>> Validating Internal JSON Web Tokens

Request HeaderAuthorization
Request Example

curl --header 'Authorization: Bearer eyJraWQiOiJqd3Qtc2ln...' http://authentication/jwt/verify

Response Example


Code Block
languageyml
true


...