Home > database >  Where is payment(py_) API doc in Stripe?
Where is payment(py_) API doc in Stripe?

Time:03-07

I found that there is a type of id start with py_, It is unique id for payments, but I have never seen it in Stripe API doc.

CodePudding user response:

py_ objects have the same API shape as the Charge object. They are fundamentally the same thing, but in most cases represent a transaction/transfer between 2 Stripe accounts (i.e. with Connect).

  • Related