Frontend Page Notification
The system delivers payment results to the merchant’s specified page via a synchronous redirect.Interface Overview
Request Method: POST Redirect URL: This URL is set via theredirectUrl parameter in the order creation request. It must be an HTTPS URL. Ensure the redirect URL is publicly accessible and does not contain query string parameters — otherwise the merchant may not receive the notification correctly. Example: https://pay.example.com/return/success
Notification Rules
After the user completes payment, PayLoco sends the payment result and user information to the merchant by redirecting to the configured page. The merchant’s page must be able to receive and process this data.Notification Payload
The payment result notification accesses the merchant’s configured redirect URL using the HTTP POST method. Notification data is transmitted as form fields in the request body and includes the encrypted payment result details.Callback Overview
Callback messages are used to deliver transaction event notifications, such as payment completions and transfers.Callback Message Format
- All callback messages use HTTP POST as an HTML form submission (
application/x-www-form-urlencoded). - Callback messages include a signature. Merchants must verify the request signature. See Signature Verification for details.
Notification Payload Example
Signing Rules
- Fields included in the signature: All fields except
signatureare included. Sort fields alphabetically by field name, then serialize to a JSON string before signing. - Signing algorithm: SHA256WithRSA.
- Signature rules: Refer to the Signing Tool documentation.