Short answer: You can create customer in Stripe by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Stripe Create Customer action to a workflow, map its 4 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Email email | string | Required | Email. e.g. "customer@example.com" |
Name name | string | Optional | Name. e.g. "John Doe" |
Phone phone | string | Optional | Phone. e.g. "+1234567890" |
Description description | string | Optional | Description |
{"email": "customer@example.com","name": "John Doe","phone": "+1234567890","description": "{{trigger.description}}"}
{"id": "cus_abc123","name": "John Doe","email": "customer@example.com","object": "customer","created": 1700000000,"livemode": false}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.