action gsmtasks_accounts_stripe_payment_methods_retrieve { label: "accounts_stripe_payment_methods_retrieve" description: "Fetch all customer payment methods.\nThis includes all attached payment methods, default method_id" provider: gsmtasks method: GET path: "/accounts/{id}/stripe_payment_methods/" 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 } }