#AlessandroMontanari
1 messages · Page 1 of 1 (latest)
Hi! Subscriptions must 'belong' to a Customer object. There's no way currently to organise a group of Customers into a single organisation (or similar), for billing purposes
So yes, you'd represent your organisation as a regular Customer object (cus_xxx)
Can be possible to use the customer object as organization? Name of customer -> name of organization, ...
Yep, absolutely! The Customer object can absolutely represent a company/organisation. There's event fields on that object to represent relevant tax IDs etc, which are predominantly a company requirement: https://stripe.com/docs/api/customers/object#customer_object-tax_ids
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
So yeah don't think of a Stripe 'customer' as just an individual – its just a representation of your customer (whether that's a single person or a company)
Perfect, it's exactly the response that I want to ear. Thank you!