Skip to main content
Before requesting a new system user ticket, you have to sign your system user token with your RSA private key. The timestamp is also updated. The SignedSystemToken element has the following format:
  • plain text system user token
  • a period (.)
  • a UTC date time formatted as YYYYMMddhhmm using leading zeros
  • a period (.)
  • a Base64-encoded, signed version of the first 3 items
For example:

Pre-requisites

  • Your application is approved and authorized.
  • You have validated the claim and extracted the system user token from the id_token.
  • You have your private key file (obtained after application registration).

To sign the token

  1. Concatenate the first 3 items: PLAINTEXT_TOKEN.TIMESTAMP.
  2. Using the partner’s private certificate key, sign the concatenated items.
  3. Base64 encode the signed result.