2% FEE FOR ALL CRYPTO!
currency: USD, the PayPal payment cannot be sent in EUR.note value returned by the server in the payment creation response.⚡ Tip: Copy the notedirectly from the API response and paste it into the PayPal note field. Missing or incorrect notes will result in an unmatched payment.
additional_information field (as described in [How to connect PayPal for Zelling payments?]),curl --location --request POST 'https://api.zelling.io/v1/paypal/payments' \
--header 'Content-Type: application/json' \
--data-raw '{
"currency": "EUR",
"amount": 150.75,
"payout_email": "your-paypal@example.com",
"webhook_url": "https://example.com/webhook",
"additional_information": "string",
"meta": {
"orderId": "ORD-001",
"customerId": "12345",
"notes": "Urgent payment"
}
}'{
"message": "Payment created successfully",
"data": {
"pid": "PAY-1234567890",
"currency": "EUR",
"amount": 150.75,
"status": "NEW",
"payoutEmail": "your-paypal@example.com",
"additionalInformation": null,
"note": "bubbleshoutsoftdrumtowerglory",
"webhookUrl": "https://example.com/webhook",
"hostedUrl": "https://pay-paypal.zelling.io/PAY-1234567890",
"meta": {
"orderId": "ORD-001",
"customerId": "12345",
"notes": "Urgent payment"
}
}
}