REST specifications

When our system needs to create a voucher, we will call your defined api url with a body including all required information. Our system is expecting a specific result code based on the api event, see more in the individuel endpoints event page.

Sent request body

interface ApiBody {
	module: "voucher" | "fanvoucher"
	event: "create" | "delete",
	data: VoucherCreate | VoucherDelete | VoucherOrders
}

Page
Interfaces

VoucherCreate, VoucherDelete

Last updated