action gsmtasks_accounts_stripe_get_payment_method_retrieve { label: "accounts_stripe_get_payment_method_retrieve" description: "Fetch a single payment method from stripe.\nThis will also return non-attached payment methods (from setup intents for example)" provider: gsmtasks method: GET path: "/accounts/{id}/stripe_get_payment_method/" encoding: json input: { type: "object" properties: { format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }