action neutrinoapi_smsverify { label: "SMS Verify" description: "Send a unique security code to any mobile device via SMS" provider: neutrinoapi method: POST path: "/sms-verify" encoding: form output: { type: "object" required: ["number-valid", "security-code", "sent"] properties: { "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" } sent: { type: "boolean" description: "True if the SMS has been sent" } } } }