action stripe_get_customers_customer { label: "GetCustomersCustomer" description: "
Retrieves a Customer object.
" provider: stripe method: GET path: "/v1/customers/{customer}" encoding: form input: { type: "object" properties: { customer: { type: "string" } expand: { type: "array" items: { type: "string" } } } required: ["customer"] additionalProperties: false } output: { type: "object" } }