action webflow_get_payment_methods_payment_method_id { label: "get_paymentMethods_paymentMethodId" provider: webflow method: GET path: "/paymentMethods/{paymentMethodId}" encoding: json input: { type: "object" properties: { paymentMethodId: { type: "string" } } required: ["paymentMethodId"] 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 } }