#MD - list authorizations

1 messages · Page 1 of 1 (latest)

indigo ocean
#

It looks like it should according to our docs. Are you currently making this call and not seeing has_more in the response?

spiral echo
#

yes

#

I'm not seeing the response

indigo ocean
#

I will check in to this in a moment. Is the list you are receiving as long as the limit that you are passing in?

spiral echo
indigo ocean
#

If you are passing a limit of 20, do you get back 20 objects here or less?

#

I think that that field may not show up unless you get back all 20 (have not gotten a chance to check yet)

#

Interestingly, I am seeing this in the response for this exact endpoint regardless of whether I am hitting the limit or not

spiral echo
#

response = stripe.issuing.Authorization.list(limit=5)
with open ("auth_all_response.txt", 'w') as f:
for r in response:
f.write(str(r) +"\n" + (("_")*100) + "\n\n\n")

#

it doesn't give me the has more attribute