NeroPay’s Zapier integration allows users to automate secure online payments between NeroPay and more than 5,000 applications — without writing a single line of code. Merchants can trigger workflows when a payment is received or create payment links directly from tools such as Google Sheets or CRM platforms.
Authentication
- Log in to your NeroPay Dashboard .
- Copy your Public API Key from the API Key section.
- Paste it into the connection window in Zapier.
- Choose Sandbox or Live mode as needed.
Action: Create Payment Request
Create a new payment request and retrieve a checkout URL instantly.
| FieldTypeRequiredDescription | |||
| public_key | string | Your NeroPay Public API key | |
| identifier | string | Unique ID for the payment | |
| currency | string | Currency code (GBP, EUR, IDR) | |
| amount | decimal | Payment amount | |
| details | string | Description or order details | |
| ipn_url | string | Instant payment notification URL | |
| success_url | string | Redirect after successful payment | |
| cancel_url | string | Redirect after cancelled payment | |
| customer_name | string | Customer name | |
| customer_email | string | Customer email | |
| customer_phone | string | Optional | Customer phone number |
| customer_address | string | Optional | Billing address |
| customer_shipping_method | string | Optional | Shipping method |
Example Response
{ "success": "ok", "message": "Payment Initiated. Redirect to url.", "url": "https://eu.neropay.app/checkout?payment_id=EJX123" }