Creates a new customer object in Stripe
A documented Stripe operation that changes something in your account. Describe the outcome you want in plain words — HumDay writes the program, proves it, and runs it.
What this operation does
Creates a new customer object.
- POSTChanges data
api.stripe.com/v1/customers
How HumDay uses it
- You describe the outcome. Not this operation by name — what you want to happen. HumDay works out which operations it needs.
- The contract names it. Before anything is built, you see exactly which Stripe operations the program may use, and this is one of them.
- You approve access. Because this one changes data, it cannot run until you have explicitly granted it.
Other Stripe operations
- To upload a file to StripePOST · changes data
- This endpoint creates a draft invoice for a given customerPOST · changes data
- Creates an item to be added to a draft invoicePOST · changes data
- Creates a new subscription on an existing customerPOST · changes data
- Adds a new item to an existing subscriptionPOST · changes data
- Creates a new subscription schedule objectPOST · changes data
- To charge a credit card or other payment sourcePOST · changes data
- To send funds to your own bank accountPOST · changes data
Questions
- Can HumDay creates a new customer object in Stripe?
- Yes. This operation is published in Stripe's own API description, so HumDay can use it without a hand-built connector — once you have approved it for your automation.
- Will this change my Stripe data?
- Yes — this is a POST operation, so it changes something in Stripe. HumDay holds anything that writes behind an approval you grant explicitly, and the contract you approve says what it may touch.
- Do I need to write code?
- No. You describe the outcome you want in plain words. HumDay agrees a contract with you, writes the program, and shows you a proof run before anything touches your Stripe account.
Where this came from
Read from a published API description for Stripe at raw.githubusercontent.com/stripe/openapi/master/openapi/spec3.yaml. The description above is the provider’s own wording, not ours. Last published 2023-03-06.