action whatsapp_request_code { label: "Request-Code" provider: whatsapp method: POST path: "/account" encoding: json input: { type: "object" required: ["cc", "cert", "method", "phone_number"] properties: { cc: { type: "string" description: "Numerical country code for the phone number you are registering" } cert: { type: "string" description: "Base64-encoded Verified Name certificate" } method: { type: "string" description: "Method of receiving your registration code" enum: ["sms", "voice"] } phone_number: { type: "string" description: "Phone number you are registering, without the country code or plus symbol (+)" } pin: { type: "string" description: "Existing 6-digit PIN — This is only required when two-factor verification is enabled on this account." } } } output: { type: "object" additionalProperties: true } }