TrustPay
Quick Start
- Sign up at trustpay.eu and obtain API credentials
- Create a terminal in the Admin Console with the parameters below
- Start processing — the adapter is pre-built and ready to use
Overview
European payment gateway with ONE-PHASE ONLY payments and redirect support
| Provider ID | trustpay |
| Category | Card Processors |
| Website | trustpay.eu |
Supported operations: start_tx refund_tx status
Authentication
API Key + Signature (HMAC-SHA256)
Payment Flow
Payment Flow
One-phase with redirect:
- start_tx - Create payment
- POST to
/api/Payments/Payment - Payload: merchant_account, amount, return URLs
- Returns payment_request_id and redirect URL
- Customer redirected to payment page
- POST to
- status - Check payment status
- GET to
/api/Payments/Status - Parse status from response
Success→chargedProcessing→chargingFailed→rejected
- GET to
Refund:
- refund_tx - Refund payment
- POST to
/api/Payments/Refund - Requires original payment_request_id
- POST to
Note: TrustPay only supports one-phase payments. No authorization-capture flow.