action gsmtasks_accounts_stripe_create_setup_intent_create { label: "accounts_stripe_create_setup_intent_create" description: "Action to start a new setup intent." provider: gsmtasks method: POST path: "/accounts/{id}/stripe_create_setup_intent/" encoding: form input: { type: "object" properties: { format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } payment_method_id: { type: "string" } } required: ["id", "payment_method_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }