action rebilly_post_digital_wallet_validation { label: "Validate a digital wallet session" description: "[FramePay](https://docs.rebilly.com/docs/developer-docs/framepay/)\nis the recommended way to use when validating a digital wallet session.\n" provider: rebilly method: POST path: "/digital-wallets/validation" encoding: json input: { type: "object" required: ["type"] properties: { type: { type: "string" description: "Type of the digital wallet to validate." enum: ["Apple Pay"] } } } output: { type: "object" required: ["type"] properties: { type: { type: "string" description: "Type of the digital wallet to validate." enum: ["Apple Pay"] } } } }