#caits._35113
1 messages · Page 1 of 1 (latest)
hello! unfortunately not, in this doc we mention that
https://stripe.com/docs/upgrades#what-changes-does-stripe-consider-to-be-backwards-compatible
This includes adding or removing fixed prefixes (such as ch_ on charge IDs).
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 other bit which you can look out for is the prefix i.e. `fctxn_`
every object has it's own prefix e.g. PaymentIntents will start with `pi_`, SetupIntents will start with `si_`