60404: Input Error
VERIFY
ERROR
Verify returns this error when it cannot process one or more request inputs. This usually means the request is missing a required field, includes a malformed value, or sends a parameter that does not match the Verify endpoint or channel you are using.
- The request is missing a required parameter. For example, creating a verification requires
serviceSid,to, andchannel. Checking a verification requiresserviceSidand eithertoorverificationSid. - The
tovalue is not formatted correctly for the selected channel. Phone numbers sent to Verify must be inE.164format. - The request includes an unsupported or mismatched channel configuration, such as an invalid
channelvalue or aTemplateSidon a channel other than SMS or Voice. - A structured field is malformed, such as
serviceSid,verificationSid,TemplateSid, ordeviceIp. Verify expects specific SID prefixes and lengths, anddeviceIpmust be a valid IPv4 or IPv6 address if you provide it. - A code or channel-specific value does not meet parameter requirements, such as a
customCodeor verificationcodethat is not between 4 and 10 characters, or an email sender override inchannelConfigurationthat is not a valid email address.
- Validate the request before you send it. Make sure you are using the correct Verify endpoint and including every required field for that endpoint.
- Normalize phone numbers to
E.164before sending them to Verify. This helps prevent formatting errors in thetoparameter. - Use only supported Verify channel values. If you pass channel-specific parameters, confirm they are valid for that channel. For example, use
TemplateSidonly with SMS or Voice. - Validate SID and structured parameter formats in your application before making the API request. Confirm that
serviceSidstarts withVA,verificationSidstarts withVE, andTemplateSidstarts withHJ. - If you use Verify email, confirm your email integration is set up correctly and that any
channelConfiguration.fromoverride contains a valid email address. - Review Verify Logs in Console to identify which field failed validation, then correct the request and retry.