Maintenance Work Notice!
Due to updates, this documentation may not be available between 12:00 and 12:30 CET on 10/04/2025. Thank you for your understanding.
This document describes the Pay-Jet SDK authentication method and the corresponding parameters for the request and the responses passed back. If a merchant develops an app of its own, this method is necessary so that secure authentication takes place via the Pay-Jet interface, independently of the app. The authentication is based on a one-off token that is exchanged between Pay-Jet and the merchant.
Further information about integration of the SDK can be found within GitHub repository at https://github.com/Computop.
Process flow Mobile SDK Authentication
Format Description a alphabetical as alphabetical with special characters n numeric an alphanumeric ans alphanumeric with special characters ns numeric with special characters bool boolean expression (true or false) 3 fixed length with 3 digits/characters ..3 variable length with maximum 3 digits/characters enum enumeration of allowed values dttm ISODateTime (YYYY-MM-DDThh:mm:ss) Abbreviation Description CND condition M mandatory O optional C conditional Notice: Please note that the names of parameters can be returned in upper or lower case.Definitions
Data formats
Abbreviations
Comment If a parameter is mandatory, then it must be present If a parameter is optional, then it can be present, but it is not required If a parameter is conditional, then there is a conditional rule which specifies whether it is mandatory or optional
High level process overview:
For the authentication request, the merchant’s endpoint should accept a POST request with Content-Type: application/json and a JSON body like this:
{
"merchantID" : <Pay-Jet_MerchantID>
}
The Mobile SDK expects a JSON object as response from merchant’s endpoint, so merchant’s endpoint needs to create a JSON object with attributes from the response and also the generated AuthToken and AuthLabel like this:
{
"AuthToken“: <generated_token>,
"AuthLabel": <generated_label>,
“ExpiryDate”: <expiry_date_of_token>
"Description": <description_from_Pay-Jet_response>,
"Status": <status_from_Pay-Jet_response>,
"Code": <code_from_Pay-Jet_response>
}
In order to register a one-off token for encryption on Pay-Jet Cockpit the merchant must transmit the following parameters to Pay-Jet via a server-to-server connection. Enter the following URL to do this:
https://www.payjet-cockpit.de/authtoken.aspx |
Notice: For security reasons, Pay-Jet Cockpit rejects all payment requests with formatting errors. Therefore, please use the correct data type for each parameter. The following table describes the encrypted payment request parameters:
Parameters for authentication request
The following table describes the result parameters with which the Pay-Jet Cockpit responds to your system pls. be prepared to receive additional parameters at any time and do not check the order of parameters
the key (e.g. MerchantId, RefNr) should not be checked case-sentive
Response parameters for authentication request