Returns results of comparing the members given answers to Address, Education, Income, and Residence to third party data. party data.

Endpoint URL

http://api.clearvoicesurveys.com/api/v2/member/getmemberfailedvalidations?memberguid={memberguid}

Parameters

MemberGuid
string
Member Guid

Response Description

RequireAddressExplanation
boolean
True if the member did not pass third party validation for matching street address or zip code False if the member's answer matched, or has not been collected for verification yet.
ProvidedStreetAddress
string
Member provided Street Address
ProvidedZipCode
string
Member provided Zip Code
ProvidedState
string
Member Provided State
ProvidedCity
string
Member provided City
RequireEducationExplanation
boolean
True if the member's answer did not pass third party validation for matching level of Education False if the member's answer matched, or has not been collected for verification yet.
ProvidedEducationAnswer
string
Member provided level of education
RequireHouseholdIncomeExplanation
boolean
True if the member's answer did not pass third party validation for matching Household Income False if the member's answer matched, or has not been collected for verification yet.
ProvidedHouseholdIncomeAnswer
string
Member provided household income
RequireResidenceExplanation
boolean
True if the member's answer did not pass third party validation for matching Owner / Renter False if the member's answer matched, or has not been collected for verification yet.
ProvidedResidenceAnswer
string
Member provided residence
RequireDateOfBirthMismatchAction
boolean
True if the member's answer for date of birth matched third party validation False if the member's answer did not match, and should be marked as fraud
RequireNoMatchFoundAction
boolean
True if the member's answers return no data from third party validations False if the member's answers returned data from thrid party validatons
ProvidedDateOfBirth
string
Member provided date of birth

Example Response

{
  "RequireAddressExplanation": true,
  "ProvidedStreetAddress": "sample string 2",
  "ProvidedZipCode": "sample string 3",
  "ProvidedState": "sample string 4",
  "ProvidedCity": "sample string 5",
  "RequireEducationExplanation": true,
  "ProvidedEducationAnswer": "sample string 7",
  "RequireHouseholdIncomeExplanation": true,
  "ProvidedHouseholdIncomeAnswer": "sample string 9",
  "RequireResidenceExplanation": true,
  "ProvidedResidenceAnswer": "sample string 11",
  "RequireDateOfBirthMismatchAction": true,
  "RequireNoMatchFoundAction": true,
  "ProvidedDateOfBirth": "sample string 14"
}