UNPKG

sdk-node-apis-efi

Version:

Module for integration with Efi Bank API

23 lines (17 loc) 430 B
const EfiPay = require('sdk-node-apis-efi') let options = require('../../credentials') let body = { tipo: 'PIX_RECEBIDO', e2eids: [ "E09089356202501151648API44aff264", "E09089356202501151647API77209f1c" ] } const efipay = new EfiPay(options) efipay.pixResendWebhook({}, body) .then((resposta) => { console.log(resposta) }) .catch((error) => { console.log(error) })