I'm using Stripe's simple 'Checkout', is there a specification detailing the max length of data accepted and returned, eg for the following data:
customer id description risk level address_line1 etc
For most APIs, Stripe allows up to 100 read operations per second and 100 write operations per second in live mode, and 25 operations per second for each in test mode. For the Files API, Stripe allows up to 20 read operations per second and 20 write operations per second in both live mode and test mode.
Recurring chargesWhen payments fail, Stripe retries them using the Smart Retries feature. This automatically re-attempts payment when cards are declined according to your Dashboard settings.
Metadata is useful for storing additional, structured information on an object. As an example, you could store your user's full name and corresponding unique identifier from your system on a Stripe Customer object.
max length of customer id is 255
max length of description is 350 (may change in future)
Copied from the doc,
You can safely assume object IDs we generate will never exceed 255 characters, but you should be able to handle IDs of up to that length. If for example you’re using MySQL, you should store IDs in a VARCHAR(255) COLLATE utf8_bin
column (the COLLATE configuration ensures case-sensitivity in lookups).
The description field on customer endpoints has a maximum character length limit of 350 now
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With