Skip to content

Instantly share code, notes, and snippets.

@javiermurillo
Created September 30, 2015 22:59
Show Gist options
  • Save javiermurillo/1fbb8066158ba392079b to your computer and use it in GitHub Desktop.
Save javiermurillo/1fbb8066158ba392079b to your computer and use it in GitHub Desktop.
Llamada básica de cargo en Conekta utilizando ruby
charge = Conekta::Charge.create({
"currency"=>"MXN",
"amount"=> 20000,
"description"=>"Stogies",
"reference_id"=>"9839-wolf_pack",
"card"=> "tok_test_visa_4242",
"details"=> {
"email"=> "logan@x-men.org",
"line_items"=> [{
"name": "Box of Cohiba S1s",
"description": "Imported From Mex.",
"unit_price": 51000,
"quantity": 1,
"sku": "cohb_s1",
"type": "pizza-purchase"
}]
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment