action paypi_post_send_code { label: "Send verification code" description: "This request send's a code to the given email address, which should be returned to check it is correct." provider: paypi method: POST path: "/sendCode" encoding: json input: { type: "object" properties: { email: { type: "string" } } } output: { type: "object" properties: { message: { type: "boolean" } success: { type: "boolean" } } } }