REST ClientVerified CallerssubmitVerificationCopy page|View as Markdown|Open in Claude|More actionsSubmit the verification code received during the verification call or SMS. Response Example Example 1import { RestClient } from "@signalwire/sdk";23const client = new RestClient({4 project: "your-project-id",5 token: "your-api-token",6 host: "your-space.signalwire.com"7});89const result = await client.verifiedCallers.submitVerification("caller-id", {10 verification_code: "123456",11});12console.log("State:", result.verificationState);