Skip to content

Instantly share code, notes, and snippets.

@romuloccomp
Created November 14, 2017 14:18
Show Gist options
  • Save romuloccomp/6907a7cb81e2a91225a635e49676b320 to your computer and use it in GitHub Desktop.
Save romuloccomp/6907a7cb81e2a91225a635e49676b320 to your computer and use it in GitHub Desktop.
Teste API Boleto
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