Created
November 14, 2017 14:18
-
-
Save romuloccomp/6907a7cb81e2a91225a635e49676b320 to your computer and use it in GitHub Desktop.
Teste API Boleto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Iugu::Charge.create( | |
{ | |
"method"=> "bank_slip", | |
"email"=>"[email protected]", | |
"custom_variables" => [{"name"=>"empresa","value"=>current_company.name}, | |
{"name"=>"company_id","value"=>current_company.id}], | |
"payer"=>{ | |
"cpf_cnpj":"08097814684", | |
"name":"Romulo Pereira", | |
"address"=>{"street"=>"Rua a", | |
"number"=>"123", | |
"district"=>"Bairro X", | |
"city"=>"Belo Horizonte", | |
"state"=>"Minas Gerais", | |
"zip_code"=>"32687-086", | |
"complement"=>""} | |
}, | |
"months"=>"1", | |
"items" => | |
[ | |
{ | |
"description"=>"Item Teste", | |
"quantity"=>"1", | |
"price_cents"=>"145" | |
} | |
] | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment