我目前正在研究一個項目並面臨任務問題。我試圖隨機生成一個6位數的優惠券號碼,並通過那裏的API發佈到財富賬戶。如果優惠券創建成功,我希望通過電子郵件將相同的優惠券代碼發送給客戶。Chargify API優惠券創建
按照chargify文檔,這是我應該如何發送的所有細節,從我的應用程序chargify:
{"subscription":{
"product_handle":"[@product.handle]",
"customer_attributes":{
"first_name":"Joe",
"last_name":"Blow",
"email":"[email protected]"
},
"credit_card_attributes":{
"full_number":"1",
"expiration_month":"10",
"expiration_year":"2020"
},
"coupon_code":"6 digit random code"
}}
"""
的https:// [與@subdomain] .chargify.com/subscriptions.json。
我可以通過這種方法來創建一個6位隨機數字代碼:
rand(999999).to_s.center(6, rand(9).to_s).
然而,這似乎並沒有對我的工作。任何建議將不勝感激。
感謝
歡迎計算器!你能告訴我們那些代碼不起作用嗎? –