Push API
With our Push API you may easily push transactions into the platform, which were not actually processed through it (e.g. Transaction performed via POS terminals directly), by sending appropriate requests to the corresponding endpoint.
Any Transaction pushed to the platform will be stored just as any other transaction, but no direct processing (e.g. involving an acquirer for processing) takes place.
Authentication
- HTTP: Basic Auth
To authenticate API requests, the API username and password must be sent as BASIC Authentication in the Authorization
header,
as defined in RFC 7617.
To achieve this, the username and password are first concatenated with a :
(colon) separator,
and the resulting string is then Base64 encoded. Here is an example of how this process works:
- Suppose the API username is
anyApiUser
and the password ismyPassword
. - Concatenate the username and password with a
:
separator:anyApiUser:myPassword
. - Base64 encode the concatenated string:
YW55QXBpVXNlcjpteVBhc3N3b3Jk
. - Finally, include the
Authorization
header in the API request with the Base64 encoded string, like so:Authorization: Basic YW55QXBpVXNlcjpteVBhc3N3b3Jk
.
Many programming frameworks will automatically handle the BASIC Authentication process for you once you provide the username and password to the appropriate request object.
Security Scheme Type: | http |
---|---|
HTTP Authorization Scheme: | basic |