UNPKG

sdk-node-apis-efi

Version:

Module for integration with Efi Bank API

33 lines (28 loc) 742 B
const EfiPay = require('sdk-node-apis-efi') const options = require('../../credentials') let params = { id: 0, } let body = { payment: { banking_billet: { expire_at: '2024-09-20', customer: { name: 'Gorbadoc Oldbuck', email: 'oldbuck@efipay.com.br', cpf: '94271564656', birth: '1977-01-15', phone_number: '5144916523', }, }, }, } const efipay = new EfiPay(options) // O método defineSubscriptionPayMethod indica os campos que devem ser enviados e que serão retornados efipay.defineSubscriptionPayMethod(params, body) .then((resposta) => { console.log(resposta) // Aqui você tera acesso a resposta da API e os campos retornados de forma intuitiva }) .catch((error) => { console.log(error) })