action paypi_post_check_code { label: "Check verification code" description: "Checks the user's emailed code is valid. \nIf this returns success=true, you can safely assume the user you are interacting with is the owner of that email address.\n" provider: paypi method: POST path: "/checkCode" encoding: json input: { type: "object" properties: { code: { type: "string" } email: { type: "string" } } } output: { type: "object" properties: { message: { type: "string" } success: { type: "boolean" } } } }