Skip to main content

InputValidationError

Error indicating that the provided input data failed validation.

Resolution:

  • Check the invalidInput field for specific validation errors
  • Ensure all required fields are provided
  • Verify that field values meet the specified constraints
type InputValidationError implements ErrorInterface {
invalidInput: InvalidInputType!
message: String!
}

Fields​

InputValidationError.invalidInput ● InvalidInputType! non-null enum​

InputValidationError.message ● String! non-null scalar​

A short description of the error.

Interfaces​

ErrorInterface interface​

Error interface for all errors that can be returned by the API. Always include the ErrorInterface in your request so any error returned by the API will be returned.

Implemented By​

AvailableFundsResult union ● CreateCustomerResult union ● CreateOfferResult union ● PoliciesResult union