Paymentwall

// POST (application/json) - https://payments.cloudprotected.net/v1/payments/create

{
	"gateway": "paymentwall",
	"successUrl": "https://shop.example.com/success",
	"failedUrl": "https://shop.example.com/failed",
	"webhookUrl": "https://shop.example.com/process",
	"identifier": "payment12345",
	"package": {
		"name": "Test Package",
		"price": 10.99,
		"currency": "EUR"
	},
	"subscription": {
		"enabled": false
	},
	"user": {
		"identifier": "1234",
    "email": "[email protected]"
	},
	"credential": {
		"project": "project id",
		"secret": "secret id"
	},
	"meta": {
		"registrationTimestamp": 123, // Unixtimestamp - Optional
		"widget": "p10" // Widget to use - Optional
	}
}

Last updated

Was this helpful?