UNPKG

sdk-node-apis-efi

Version:

Module for integration with Efi Bank API

48 lines (43 loc) 1.01 kB
const EfiPay = require('sdk-node-apis-efi') const options = require('../../credentials') let params = { id: 0, } let body = { items: [ { name: 'Product One', value: 600, amount: 1, }, ], payment: { credit_card: { installments: 1, payment_token: '83d52dbd590d9ebc991938c711ddd31f65df89a5', billing_address: { street: 'Street 3', number: 10, neighborhood: 'Bauxita', zipcode: '35400000', city: 'Ouro Preto', state: 'MG', }, 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 oneStepSubscription indica os campos que devem ser enviados e que serão retornados efipay.oneStepSubscription(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) })