action neutrinoapi_verify_security_code { label: "Verify Security Code" description: "Check if a security code sent via SMS Verify or Phone Verify is valid" provider: neutrinoapi method: GET path: "/verify-security-code" encoding: json input: { type: "object" properties: { "limit-by": { type: "string" } "security-code": { type: "string" } } required: ["security-code"] additionalProperties: false } output: { type: "object" required: ["verified"] properties: { verified: { type: "boolean" description: "True if the code is valid" } } } }