REST API

Elements of a JSON Web Token Message

A JWT Message is built with the following elements:

Headers

These headers must be included in your message:
v-c-merchant-id
Your
organization ID.
Date
The date of the transaction in the RFC1123 format. (Thu, 18 Jul 2019 00:18:03 GMT)
Content-Type
Also known as the Multipurpose Internet Mail Extension (MIME) type, this identifies the media or file type of the resource. (application/json)
Host
The transaction endpoint. (
)
x5c
The X.509 certificate's private key used to digitally sign the token.
alg
Algorithm used to sign the token header.

Body

The message body. For more information on setting up the body, see Generating a Hash of the Message Body.