Archive for category Chargify
Update Shipping info in Chargify
Today I went through really a big issue , I am trying to update shipping information in Chargify using its api.
Code written below is the code which I tried to update the shipping info
Chargify API : Charge card using Basic authentication and Post Request
require “net/https”
require “uri”
data = Hash.new
data["charge"] = Hash.new
data["charge"]["amount"] = amount_to_charge
data["charge"]["memo"] = ‘This is the description of the one time charge.’
or
