JSON Web Token

If this user account has not already been provided, please request that one is created for your site(s) by contacting our Support Team.
The jwt field submitted in the form will need to be in the form of a JSON Web Token (JWT), which consists of encoded data.
JSON Web Tokens are an open, industry standard RFC 7519 method for securely transmitting data between two parties.
We recommend using the libraries found at https://jwt.io to generate the JWT.
In its compact form, JWT consists of three parts separated by dots (“.”), which are:
<header>.<payload>.<signature>
Generating the header
The header consists of two parts:
- alg – The signing algorithm used (we support “HS256”, “HS384” and “HS512”).
- typ – The type of the token, which is “JWT”.
These need to be Base64URL encoded to form the first part of the JWT. Example:
- Header – {“alg”:”HS256″,”typ”:”JWT”}
- Encoded – eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
Important: Submitted data must be Base64Url encoded, rather than standard Base64.
Generating the payload
The second part of the token is the payload. The following fields can be included:
Field | Format | Description | ||
![]() |
iat | Numeric (17) | Time in seconds since Unix epoch (generated using UTC). | |
![]() |
iss | Alphanumeric (255) | Your JWT username. | |
![]() |
payload | |||
![]() |
accounttypedescription | Alphanumeric (20) | Value submitted is “ECOM” (represents an e-commerce transaction). | |
![]() |
authmethod | Alphanumeric (5) | Click here for further info. | |
![]() |
billingprefixname | Alphanumeric (25) | Billing name. | |
![]() |
billingfirstname | Alphanumeric (127) | ||
![]() |
billingmiddlename | Alphanumeric (127) | ||
![]() |
billinglastname | Alphanumeric (127) | ||
![]() |
billingsuffixname | Alphanumeric (25) | ||
![]() |
billingpremise | Alphanumeric (25) | Billing address. | |
![]() |
billingstreet | Alphanumeric (127) | ||
![]() |
billingtown | Alphanumeric (127) | ||
![]() |
billingpostcode | Alphanumeric (25) | ||
![]() |
billingcounty | Alphanumeric (127) | Billing county.
Note: If submitted, billingcountryiso2a is required. |
|
|
billingcountryiso2a | iso2a | Billing country in iso2a format.
Required if billingcounty is submitted. Otherwise, Optional. |
|
![]() |
billingemail | Email (255) | Billing email address. | |
![]() |
billingtelephone | Alphanumeric (20) | Billing telephone number. | |
![]() |
billingtelephonetype | Char (1) | Type of billing phone number:
|
|
![]() |
credentialsonfile | Numeric (1) | This is required for Visa and Mastercard transactions where the merchant is utilising the Credentials on File (CoF) feature. If the transaction is not eligible for CoF, or you do not wish to use credentials for future transactions, you can omit this field.The allowed values for this field are 0, 1 & 2.
|
|
![]() |
customerprefixname | Alphanumeric (25) | Delivery name. | |
![]() |
customerfirstname | Alphanumeric (127) | ||
![]() |
customermiddlename | Alphanumeric (127) | ||
![]() |
customerlastname | Alphanumeric (127) | ||
![]() |
customersuffixname | Alphanumeric (25) | ||
![]() |
customerpremise | Alphanumeric (25) | Delivery address. | |
![]() |
customerstreet | Alphanumeric (127) | ||
![]() |
customertown | Alphanumeric (127) | ||
![]() |
customercounty | Alphanumeric (127) | ||
![]() |
customercountryiso2a | iso2a | ||
![]() |
customerpostcode | Alphanumeric (25) | ||
![]() |
customeremail | Email (255) | Delivery email address. | |
![]() |
customertelephone | Alphanumeric (20) | Delivery telephone number. | |
![]() |
customertelephonetype | Char (1) | Type of delivery phone number:
|
|
![]() |
currencyiso3a | iso3a | The currency that the transaction was processed in. | |
![]() |
baseamount | Numeric (13) | Either baseamount or mainamount must be included (not both).
The amount of the transaction in base units (without any decimal places). e.g. £10.50 would be submitted as “1050” |
|
mainamount | Numeric (14) | Either baseamount or mainamount must be included (not both).
The amount of the transaction in main units. |
||
|
initiationreason | Char (1) | This is required when processing a Merchant Initiated Transaction (MIT).Allows you to assign a reason for the transaction.
Do not submit when processing a Customer Initiated Transaction (CIT). The allowed values for this field are “A”, “C”, “D”, “S” and “X”.
Please refer to Visa’s own documentation for further information. |
|
![]() |
locale | Undefined | By default, the checkout form and any error messages displayed will be rendered in British English. But this behaviour can be overridden by submitting the following locale values in the payload:
|
|
![]() |
operatorname | Alphanumeric (255) | The value of this field contains the name of the user that processed the request. This is optional. If omitted, the value of the alias will be recorded instead, which will either be your site reference or Web Services username, depending on your configuration. | |
![]() |
orderreference | Alphanumeric (255) | Your unique order reference that can be stored on the Trust Payments system.
We strongly recommend you submit an orderreference for each transaction. |
|
![]() |
parenttransactionreference | Alphanumeric including hyphens (25) | Allows you to specify the transactionreference of a previous request. Key details are inherited from this request. | |
![]() |
requesttypedescriptions | List | The request types to be processed. To process a 3-D Secure authenticated payment, submit [“THREEDQUERY”,”AUTH”].Important: You must ensure “THREEDQUERY” is submitted in this list when performing transactions, in order to ensure 3-D Secure is processed. This is required by the PSD2 mandate.To learn more about supported request types, click here. |
|
![]() |
settleduedate | Date YYYY-MM-DD | Here you can set which day in the future you wish for your transaction to settle. It must be in the format: YYYY-MM-DD. |
|
![]() |
settlestatus | Numeric (3) | A numeric value used to define the settlement instruction.
|
|
![]() |
sitereference | Alphanumeric (50) | Unique reference that identifies your Trust Payments site. | |
![]() |
subscriptionbegindate | Date YYYY-MM-DD | This field refers to the when the first automated payment will be processed. From there onward, we will use the data submitted in the subscriptionunit and subscriptionfrequency fields to automatically process the subscription payments at regular intervals.e.g. If a subscription request is submitted on 5th January 2018
the interval is 1 MONTH (subscriptionfrequency = 1 and subscriptionunit = MONTH) and subscriptionbegindate is 2018-01-08, the first automated payment will be processed on 8th January 2018, and all subsequent payments will be processed on the 8th of each month. If you do not submit the subscriptionbegindate, we will use the subscriptionunit and subscriptionfrequency fields above to automatically schedule the first automated payment. |
|
![]() |
subscriptionfinalnumber | Numeric (5) | This is used to set the number of payments to be processed over the course of the subscription:
Note: If the value is “0”, the subscription engine will schedule payments indefinitely until the user manually sets the subscription to Inactive. |
|
![]() |
subscriptionfrequency | Numeric (11) | Combined with unit, the frequency defines how frequently payments are processed.e.g. For one payment every 7 days: subscriptionfrequency = 7 and subscriptionunit = DAY
e.g. For one payment every 2 months: subscriptionfrequency = 2 and subscriptionunit = MONTH |
|
![]() |
subscriptionnumber | Numeric (5) | Unless specified otherwise, subscriptions start with subscriptionnumber = 1 by default. The subscriptionnumber is automatically incremented in every subsequent subscription payment until it exceeds the value of the subscriptionfinalnumber field, when no further payments will be attempted. A completed subscription is represented by a subscriptionnumber that is higher than the corresponding subscriptionfinalnumber. | |
![]() |
subscriptiontype | Alpha (11) | This field indicates the type of subscription to be processed. Your system can submit these two values:
Note: Installments are only accepted by certain acquirers. For further info, please contact your bank. |
|
![]() |
subscriptionunit | Alpha (5) |
This field represents the unit of time between each subscription. This can be either “DAY” or “MONTH”. Note: It is imperative that this field is submitted to the gateway in CAPITALS (“DAY” or “MONTH”). |
|
![]() |
threedbypasspaymenttypes
|
List | In order to comply with PSD2, you must perform 3-D Secure authentication with all supported card-based e-commerce transactions. This is achieved by ensuring THREEDQUERY is included in the requesttypedescriptions list in the JWT payload. However, your solution may encounter circumstances in which 3-D Secure is not required / supported by your acquiring bank. By specifying payment types in the threedbypasspaymenttypes list, 3-D Secure authentication will not be performed for the aforementioned payment types. | |
![]() |
transactionactive | Numeric (1) | The subscription status.“0” – Inactive: Suspends future payments until manually overridden.
“1” – Active: Schedules subscription payments immediately, bypassing fraud & duplicate checks (if enabled). “2” – Pending (default): Schedules subscription payments after the AUTH has been settled (settlestatus “100”). |

- The payload should contain all fields that you do not want to allow the customer to modify (e.g. the transaction amount).
- The payload should not contain any fields that the customer is allowed to modify while on your checkout (e.g. their address or contact details).
These fields are then Base64URL encoded to form the second part of the JWT. Example:
{"payload":{"accounttypedescription":"ECOM","baseamount":"1050","currencyiso3a":"GBP","sitereference":"test_site12345","requesttypedescriptions":["THREEDQUERY","AUTH"]},"iat":1559033849,"iss":"jwt.user"}
eyJwYXlsb2FkIjp7ImFjY291bnR0eXBlZGVzY3JpcHRpb24iOiJFQ09NIiwiYmFzZWFtb3VudCI6IjEwNTAiLCJjdXJyZW5jeWlzbzNhIjoiR0JQIiwic2l0ZXJlZmVyZW5jZSI6InRlc3Rfc2l0ZTEyMzQ1IiwicmVxdWVzdHR5cGVkZXNjcmlwdGlvbnMiOlsiVEhSRUVEUVVFUlkiLCJBVVRIIl19LCJpYXQiOjE1NTkwMzM4NDksImlzcyI6Imp3dC51c2VyIn0=

We allow you to instead submit the mainamount here, if preferred. In this case, the value is submitted in main units (£10.50 would be submitted as “10.50” – notice the decimal point).
Generating the signature
The final part of the token is the signature. The signature is used to ensure the token wasn’t modified by the customer before the submitted form reaches Trust Payments.
The signature is created by taking the encoded header, the encoded payload, a “secret” and the algorithm specified in the header, and then signing them.

When storing the value of the secret on your system, you must ensure you do so in a secure manner.
The value of the secret must not be stored in plain text.
Example – If you wanted to use the HMAC SHA256 algorithm, the signature would be created in the following way:
HMACSHA256( base64UrlEncode(header) + "." + base64UrlEncode(payload), secret)

Complete JWT example
The result is three Base64URL strings separated by dots (“.”):
If we take the header, the payload and the signature from the examples above, you would end up with the following JWT:
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwYXlsb2FkIjp7ImFjY291bnR0eXBlZGVzY3JpcHRpb24iOiJFQ09NIiwiYmFzZWFtb3VudCI6IjEwNTAiLCJjdXJyZW5jeWlzbzNhIjoiR0JQIiwic2l0ZXJlZmVyZW5jZSI6InRlc3Rfc2l0ZTEyMzQ1IiwicmVxdWVzdHR5cGVkZXNjcmlwdGlvbnMiOlsiVEhSRUVEUVVFUlkiLCJBVVRIIl19LCJpYXQiOjE1NTkwMzM4NDksImlzcyI6Imp3dC51c2VyIn0%3D.acGTiW8Px1iQmoP7Cf4qbqwwxK_4oezvbvOboMW0aCU
The full token can then be included when initialising the library, like so:
<html> <head> </head> <body> <div id="st-notification-frame"></div> <form id="st-form" action="https://www.example.com" method="POST"> <div id="st-card-number"></div> <div id="st-expiration-date"></div> <div id="st-security-code"></div> <button type="submit">Pay securely</button> </form> <script src=<DOMAIN>/js/v3/st.js></script> <script> (function() { var st = SecureTrading({ jwt : 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwYXlsb2FkIjp7ImFjY291bnR0eXBlZGVzY3JpcHRpb24iOiJFQ09NIiwiYmFzZWFtb3VudCI6IjEwNTAiLCJjdXJyZW5jeWlzbzNhIjoiR0JQIiwic2l0ZXJlZmVyZW5jZSI6InRlc3Rfc2l0ZTEyMzQ1IiwicmVxdWVzdHR5cGVkZXNjcmlwdGlvbnMiOlsiVEhSRUVEUVVFUlkiLCJBVVRIIl19LCJpYXQiOjE1NTkwMzM4NDksImlzcyI6Imp3dC51c2VyIn0%3D.acGTiW8Px1iQmoP7Cf4qbqwwxK_4oezvbvOboMW0aCU' }); st.Components(); })(); </script> </body> </html>

Now you have constructed your payment form, configured the JavaScript Library and included your JWT, we now recommend you process your first test transactions.