So I have an interesting issue with the Ruby lib. Let's say you have a product sku with its inventory set to "finite" and given quantity. If you retrieve that sku and then try and update it you will get "You can only specify value when inventory type is `bucket`."
dqsf joined the channel
when I inspect the sku's inventory hash, it has a value of "null"
one00handed joined the channel
Even if I delete "value" from the inventory hash before calling sku.save, "value" is still sent to the api
korben
chuckweiss: I'm pretty sure there is not a way, sorry.
nemothekid has quit
caiges
I should clarify that the "value" property of the inventory hash has a value of "null" when retrieved via Stripe::SKU.retrieve()
korben
caiges: Hrmm. That's a neat one.
caiges
I thought so :)
korben
caiges: Imma poke someone smarter than I and see if they've seen that before.
caiges
kk
korben
Two shakes.
caiges
thx
dqsf has quit
korben
caiges: Gonna fire you a PM.
LochnessMobster3 has quit
one00handed has quit
dqsf joined the channel
stefek99 has quit
dqsf has quit
one00handed joined the channel
LochnessMobster3 joined the channel
one00handed has quit
s3shs joined the channel
one00handed joined the channel
s3shs joined the channel
LochnessMobster3 has quit
one00handed has quit
markin
chuckweiss: did you figure out how to deauthorize a connected account?
dqsf joined the channel
bostonmacosx joined the channel
nemothekid joined the channel
Milo joined the channel
caiges has quit
dqsf has quit
bostonmacosx has quit
Milo has quit
one00handed joined the channel
irctc289 joined the channel
irctc289
we launched an app today where we post a charge with capture: false and then refunded the charges which released the hold. that's what we see, but the users are showing us their credit card having been charged!!!
markin
irctc289: on their credit card is it under "pending" or "posted"
irctc289: it will take a while for the bank to refund the charge and remove it form their pending statement
cdbattags joined the channel
LochnessMobster3 joined the channel
irctc289
regardless, they see it on their statement as a charge. how can we hold funds without this being displayed in their ledger?
this is not specified anywhere in your docs that this will display a s acharge and our users are furious
markin
irctc289: you can't if you're holding funds it will show up as pending on the customers card because it has an effect on their available balance. It should not move from pending to their posted transactions
irctc289
it shows as posted
markin
irctc289: if its posted that would indicate you made a charge, either by capturing the charge or by setting capture to true not false. Are you just refunding the uncaptured charge or do you capture it and then refund it?
if you captured and then refunded it would take 7 to 10 days for the refund to reflect in their account
cdbattags has quit
irctc289
capture false then refund full
the local gas station puts a hold on my card until im done pumping gas but that doesnt post to my pending transactions
markin
irctc289: then you should email support at support.stripe.com/email something sounds wrong if they're seeing it as pending and not posted
irctc289: the local gas station's hold would show up as pending, but they capture it at the end of the pumping, thus you'd only see the posted amount for the captured amount
irctc289: if you checked your statement while pumping (or had push alerts on your bank account), you'd see a pending charge for like $99 or whatever the hold amount is
bostonmacosx joined the channel
irctc289
ok, thank you. is there no way of fixing this?
markin
if you're doing what you're saying you're doing it should just stay on the customer's pending transactions until the refund get processed. If its actually posted like you're saying, you should email support at support.stripe.com/email with the charge ids and they can investigate
gladely has quit
nemothekid has quit
kies^ has quit
nemothekid joined the channel
irctc289 has quit
LochnessMobster3 has quit
p15 joined the channel
s3shs joined the channel
one00handed has quit
one00handed joined the channel
landakram has quit
Milo joined the channel
Newyorkadam joined the channel
Newyorkadam
i’ve got a subscription plan set up
is there a way for me to get a list of all subscriped customers and their shipping addresses?
Milo has quit
tr12 joined the channel
tr12
Newyorkadam: you can do this through the dashboard, but not through the api
or, rather, to do this through the api, you'd need to iterate over all customers, and then discard the ones not subscribed to that plan
Newyorkadam
tr12: yeah I wanna do it on the DB
i should say dashboard, not DB
tr12: what page?
one00handed has quit
tr12
it's on the customers page
Newyorkadam
I have the ‘subscribers’ page
yeah, but that doesn’t say their address from what I can see
tr12
you can set a filter for only the plan you're interested in
Newyorkadam
tr12: yeah I’ve got a list of all of the people on the subscription
so i have a list of people subscribed
but not their addresses
nemothekid has quit
tr12
huh, apparently the csv export doesn't contain shipping addresses, only billing addresses
I suspect you'll need to pull this via the api, then