-
Notifications
You must be signed in to change notification settings - Fork 1
/
example-json.js
50 lines (47 loc) · 1.44 KB
/
example-json.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
var moip = require("./moip");
var payment = {
token: "01010101010101010101010101010101",
appkey: "ABABABABABABABABABABABABABABABABABABABAB",
mode: "identification",
environment: "test",
data: {
InstrucaoUnica : {
Razao: "Razão / Motivo do pagamento",
Valores: {
Valor: {
_attr : { moeda : "BRL" },
_value : "1.00"
}
},
FormasPagamento: {
FormaPagamento: ["CartaoCredito","CartaoDebito"]
},
Pagador:{
Nome: "José da Silva",
Email: "[email protected]",
IdPagador: "ze.silva1",
EnderecoCobranca:{
Numero: "171",
TelefoneFixo: "(11)3165-4020",
CEP: "01452-000",
Pais: "BRA",
Estado: "SP",
Bairro: "Itain Bibi",
Cidade: "São Paulo",
Logradouro: "Av. Brigadeiro Faria Lima"
}
},
URLNotificacao: "http://www.seuSite/transactions/notification",
URLRetorno: "http://www.seuSite/transactions",
}
}
};
var Moip = new moip.Moip();
Moip.send(payment, function(Resposta){
console.log(Resposta);
//console.log(Resposta['ns1:EnviarInstrucaoUnicaResponse']['Resposta'][0]['Token'][0]);
var resp = Resposta['ns1:EnviarInstrucaoUnicaResponse']['Resposta'][0];
if(resp){
console.log("Acesse https://desenvolvedor.moip.com.br/sandbox/Instrucao.do?token=" + resp['Token'][0]);
}
});