Skip to main content

Release 02.04.2026

Changelog

Payment Methods

New Instrument Type mobile_top_up:

New Card Brands humo and uzcard:

Release 19.03.2026

Changelog

Orders

Bank Transfer Payer Data Support:

  • Added bankTransferData object to the payer field in the Create Order endpoint.
  • When creating an order with instrumentType = bank_transfer, merchants can now pass the payer's bank transfer details (such as bankCode, accountName, accountNumber, etc.) in payer.bankTransferData.
  • This allows providing bank-related information for the payer upfront, reducing the need for manual entry on the payment page.
  • Requires the company setting "Use customer data as payer information" to be enabled. This setting can be found in the Dashboard under Settings -> Company tab.

Need Action automatic resolution:

  • Orders in need_action status caused by a provider response timeout can now be resolved automatically. If the provider's response is eventually received.
  • See Order Status Model — Resolution.

Release 03.03.2026

Changelog

Orders

  • Deprecated endpoint: POST /api/v1/order/reject is now deprecated. Use POST /api/v1/order/cancel instead. The reject endpoint will be removed in a future release.

Documentation Updates

New Page: Customer and Payer Data

Added a new documentation page — Customer and Payer Data — covering:

  • How the system identifies customers (customerId → email + phone → new record)
  • Merge rules when "Use customer data as payer information" is enabled for payments and payouts
  • Payment and payout flow diagrams showing the data resolution logic
  • Payment retry behavior for payer data

Release 17.02.2026

Changelog

Deprecations

  • Order Status: The rejected order status has been removed.

API Updates - Orders and Payouts

Shop Hosted Integration (DeepLink Support):

Release 03.02.2026

Changelog

Payment Methods

Samsung Pay Support:

Webhooks

  • Previously, the system sent a webhook with status failed when an order was not created because the Create Order endpoint returned a synchronous error (e.g., 412 Precondition Failed).
  • Change: The system no longer sends a callback notification in these scenarios. If the order creation returns an error synchronously, no asynchronous webhook will be triggered.

Release 27.01.2026

Changelog

Callbacks

Signature Verification Logic Update:

We have updated the requirements for generating the control signature to support Unicode characters in callback payloads (e.g., in customer names).

When generating the signature on your side to compare with api-notification-sign, ensure that your JSON encoding preserves Unicode characters and does not escape slashes. For updated examples, please refer to the Configuring Callback documentation.

PHP: Add JSON_UNESCAPED_UNICODE to your json_encode flags.

$message = json_encode($phpInput, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);

Python: Use ensure_ascii=False in json.dumps.

message = json.dumps(data, separators=(',', ':'), ensure_ascii=False)

Backward Compatibility:

We recommend applying this update to all integrations. It ensures correct signature verification for Unicode data and is fully backward compatible for ASCII-only payloads.

Release 22.01.2026

Changelog

Crypto Wallets

Removed Endpoints:

  • The following CryptoWallet endpoints have been removed from the API:
    • POST /customers/crypto-wallet — Create Crypto Wallet for a Customer
    • GET /customers/{customerId}/crypto-wallet — Retrieve Customer's Crypto Wallets

Orders

Customer and Payer Data Handling:

  • Updated priority rules when both customer and payer objects are provided in the Create Order request. This behavior applies only when the company setting "Use customer data as payer information" is enabled:
    • Data from customer and payer objects will be merged
    • Fields from the payer object take priority over corresponding fields from customer
    • Missing fields in payer will be supplemented from customer data

Cryptocurrency Payments:

  • Customer identification is now required for cryptocurrency payments (instrumentType: crypto_wallet). You must provide at least one of the following fields in the customer object:
    • customerId — to use an existing customer
    • email — to identify or create customer by email
    • phone — to identify or create customer by phone

Shop Hosted Integration:

  • When using dataEntryMode: instruction with paymentPageDesign.format: shop_hosted, the payer object with required fields must be provided in the request. If payer data is insufficient, a validation error will be returned.
  • Instruction parameters are returned in the operationReference object via webhook and Retrieve Order Details response.

Retrieve Order Details:

  • The Retrieve Order Details response has been updated:
    • Added payer object to the payment items in the payments array.
    • Expanded instrumentType: crypto_wallet details (OrderPaymentDetailsCryptoWalletResponse) with:
      • recipientCryptoAddress: The cryptocurrency wallet address of the recipient.
      • recipientCryptoAddressMeta: Additional metadata for the recipient address.
      • senderCryptoAddressMeta: Additional metadata for the sender address.

Create Payout Request:

  • The Create Payout Request response (and relevant structures) has been updated for instrumentType: crypto_wallet:
    • Added blockchain: Name of the blockchain.
    • Added tokenStandard: Token standard.
    • Added senderCryptoAddressMeta: Additional metadata for the sender address.
    • Added tronscanUrl: Direct URL to view transaction details.
    • Added amlRisk: Anti-Money Laundering risk level.

Release 11.12.2025

Documentation Updates

Shop Hosted Integration

The operationReference object structure in the H2H Integration for Instructions documentation has been updated.

Updated Structure:

{
"operationReference": {
"parameters": [
{
"label": "Reference",
"value": "KT53386"
},
{
"label": "Amount",
"value": "10.00"
},
{
"label": "Entity",
"value": "db76f9cc-fbb0-4394-ac81-7b4fcfd6b2be"
}
]
}
}

Key Changes:

  • type and metadata fields replaced with parameters array
  • Parameter items now use label and value fields (previously id, type, value)
  • The operationReference object has been moved to the payments array for orders and to the payoutTransactions array for payouts

See the Retrieve Order Details endpoint, Callback, Retrieve Payout Status endpoint, and Callback Payout documentation for the complete schema definition.

Antifraud Manual Review - reviewTimeout Field Correction

The reviewTimeout field unit has been corrected from hours to minutes. The field accepts values from 1 to 1440 minutes (24 hours).

See the Antifraud Manual Review guide, Retrieve Order Details endpoint, and Retrieve Payout Details endpoint documentation.

Standardized Error Responses

All API endpoints now include standardized error response codes documentation:

Status CodeDescription
400Invalid request parameters
401Authentication failed. Verify that a valid Api-Access-Token is provided in the request headers
403Access denied. The API token does not have permission to perform the requested operation
404Resource not found
412Precondition failed
500Internal server error. An unexpected error occurred on the server side
502Service unavailable. The upstream service is temporarily unreachable
503Service unavailable. The server is temporarily unable to handle the request

Release 24.11.2025

Changelog

Upcoming Feature

These enhancements are expected to be available in upcoming releases.

The changes described in this release are currently under development. The final implementation details may change.

Antifraud

Manual Review Action for Antifraud Rules

Antifraud rules now support a new review action that allows merchants to pause transactions for manual review before they are processed by the payment provider.

New Review Action:

  • When configuring antifraud rules, you can now select the review action alongside existing actions (decline, alert, 3DS)
  • The review action pauses the transaction and sets both order and payment status to review
  • A configurable timeout period determines how long you have to make a decision
  • The system sends a callback notification with the new reviewTimeout field indicating the decision deadline

New API Endpoint:

  • Submit Antifraud Review Decision - POST /api/v1/order/review/result
  • Use this endpoint to submit your decision (accept or decline) for transactions in review status
  • Works for both orders (payments) and payouts

Updated Schemas:

For complete implementation details, see Antifraud Manual Review.

Orders and Payouts

New payer Object in Payment Attempts

In the Retrieve Order Details endpoint and the Order Status Callback, each payment attempt in the payments array now includes an optional payer object with the following structure:

  • personalData: Personal information including id, firstName, lastName, middleName, phone, email, birthDate, and ipAddress
  • addressData: Complete address information including type, zipCode, country, state, city, and address
  • documentData: Identity document details including type, series, number, issueCountry, and validBefore

All fields within these objects are optional.

New recipient Object in Payout Transactions

In the Retrieve Payout Status endpoint and the Payout Status Callback, each payout transaction in the payoutTransactions array now includes an optional recipient object with the same structure as the payer object described above.

Use Cases

This enriched data enables merchants to:

  • Antifraud Review: Make informed decisions on transactions flagged by antifraud systems with complete payer/recipient context