action idtbeyond_get_iatu_number_validator { label: "Mobile number validation" description: "Checks to verify if the phone number is valid for the country supplied." provider: idtbeyond method: GET path: "/iatu/number-validator" encoding: json input: { type: "object" properties: { country_code: { type: "string" } mobile_number: { type: "string" } "x-idt-beyond-app-id": { type: "string" } "x-idt-beyond-app-key": { type: "string" } } required: ["country_code", "mobile_number", "x-idt-beyond-app-id", "x-idt-beyond-app-key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }