I try to export spreedly data like credit cards and customers to stripe but I'm not sure what data i need to use to create a stripe token. I'm using ruby on rails, this is an example of the retriaved data from the spreedly api
Someone know what data I need to use to generate the stripe token?
{
customer=>{
:email=> "example@gmail.com",
:token=> "SsEFMRoEInyZvZasdfasdJHG78",
:credit_card=>{
:address_city=> "Distrito Federal",
:address_line1=> "Colima 436 int 104",
:address_state=> "DIF",
:address_zip=> "06700",
:country=> "MX",
:cvc_check=> "",
:exp_month=> "11",
:exp_year=> "2019",
:fingerprint=> "d80c788asdfasdJHG780511a2f67dc2F83",
:last4=> "1111",
:name=> "User",
:tokenization_method=> "S780511a2f67dc2F83tsic788as"
}
}
}