action neutrinoapi_phone_verify { label: "Phone Verify" description: "Make an automated call to any valid phone number and playback a unique security code" provider: neutrinoapi method: POST path: "/phone-verify" encoding: form output: { type: "object" required: ["calling", "number-valid", "security-code"] properties: { calling: { type: "boolean" description: "True if the call is being made now" } "number-valid": { type: "boolean" description: "True if this a valid phone number" } "security-code": { type: "string" description: "The security code generated, you can save this code to perform your own verification or you can use the Verify Security Code API" } } } }