UNPKG

@unchainedshop/plugins

Version:

Official plugin collection for the Unchained Engine with payment, delivery, and pricing adapters

10 lines (9 loc) 272 B
export default async function validate(payload) { const { fetchDatatrans } = this; const reqBody = { ...payload, }; const result = await fetchDatatrans(`/v1/transactions/validate`, reqBody); const json = await result.json(); return json; }