action webflow_post_payment_methods { label: "post_paymentMethods" provider: webflow method: POST path: "/paymentMethods" encoding: json input: { type: "object" properties: { "Content-Type": { type: "string" } description: { type: "string" } name: { type: "string" } } required: ["Content-Type"] additionalProperties: false } output: { type: "object" required: ["createdBy", "createdTime", "description", "details", "name", "paymentMethodId", "updatedBy", "updatedTime"] properties: { createdBy: { type: "string" } createdTime: { type: "string" } description: { type: "string" } details: { type: "object" } name: { type: "string" } paymentMethodId: { type: "string" } stripePublishableKey: { type: "string" } stripeSetupIntentSecret: { type: "string" } updatedBy: { type: "string" } updatedTime: { type: "string" } } additionalProperties: false } }