ストライプに接続してクーポンを取得しようとしていますが、できません。これらのいずれかを実行すると、エラーが発生します。
Stripe.Coupons.retrieve(couponId, {
success: function(coupon) {
logger.log('debug', "coupon found", coupon);
return callback(coupon, null);
},
error: function(error) {
logger.log('debug', "coupon not found", error);
return callback(null, error);
}
});
エラーが返されます - invalid_request_error
また
Stripe.Coupons.retrieve({
couponId: couponId
}, {
success: function(coupon) {
logger.log('debug', "coupon found", coupon);
return callback(coupon, null);
},
error: function(error) {
logger.log('debug', "coupon not found", error);
return callback(null, error);
}
});
エラーが返されました - クーポン ID が必要です
これを達成する方法についての適切なドキュメントはないようです。