#mrh00ts_api
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1237496954926403696
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
I am not aware of a strict length limit for a parameter. Looking...
In the meantime, can you share a request ID where you're seeing a failure?
https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Oh great!
Might be useful if you had that in the Docs
I am always used to the max being 255 for strings
this seems like an exception
We usually document any change to character limits in https://docs.stripe.com/upgrades
However, I don't see one for cardholder name
Yeah seems like its something different because of a VISA requirement
Can you share the request ID? I'm a bit curious. Is this for issuing card?
hmm I can't seem to load that request on my end. Are you sure its the right ID?
Ah yup, this name is printed on the cards that are physically issues so the limit makes sense here
yeah prob good to document it somewhere. Only shows up a handful of times as an issue.
It is documented here: https://docs.stripe.com/api/issuing/cardholders/create#create_issuing_cardholder-name
guess I missed that
appreciate it
Oh I was looking at cardholder object
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
All good ๐
Do you know what gets used for verification
is it the cardholder name
or indiviual.first_name individual.last_name
what verification are you referring to exactly? Just to make sure I am on the same page
when the card is charged
If you mean for authorization, I don't think either of the names matters really?
https://docs.stripe.com/issuing/purchases/authorizations
I think that us authorizing
but before it gets to us there are bank checks / visa checks
๐ Taking over for my teammate and catching up!
Card networks will send the authorization request over to Stripe, who then sends it to the issuing platform to determine whether to approve or decline the authorization
yeah understood but i know a few checks happen like zip code
etc
I was wonder if name is part of that
I assume so
The card object in the issuing authorization request event you receive will include card name. That said, it's up to you as the platform to approve or decline the authorization
So if a card holder's name is BOOGIE WOOGIE
we decide to approve or deny
I know certain things like zip code / cvc don't even reach us if its incorrect
Right. Name won't be part of that initial validation since name is not required for a card payment.