Endpoint for saving member explanations for failed third party validations, saying that the data has changed recently or not and allowing for Admin review of the given answers.

Endpoint URL

http://api.clearvoicesurveys.com/api/v2/member/savememberfailedvalidationexplanations

Parameters

MemberGuid
string
The Guid of the member submitting explanations
Address
AddressExplanationRequest
Optional. Only to be submitted if Address verification returned a failure
DemographicExplanations
Collection of DemographicVerificationRequest
Optional. Collection of demographic explanations. Only to be sumbitted if Education, Residence or HouseholdIncome returned failures.
AdditionalNotes
string
Notes section for Member to add additional explanation for mismatched data.

Example Request Data

{
  "MemberGuid": "sample string 1",
  "Address": {
    "Address1": "sample string 1",
    "Address2": "sample string 2",
    "City": "sample string 3",
    "StateId": 4,
    "StateAbbrv": "sample string 5",
    "ZipCode": "sample string 6",
    "RecentlyMoved": true,
    "DateMoved": "2025-09-18T16:33:35.8064954-04:00"
  },
  "DemographicExplanations": [
    {
      "DemographicGuid": "sample string 1",
      "RecentlyChanged": true,
      "DateChanged": "2025-09-18T16:33:35.8064954-04:00"
    },
    {
      "DemographicGuid": "sample string 1",
      "RecentlyChanged": true,
      "DateChanged": "2025-09-18T16:33:35.8064954-04:00"
    }
  ],
  "AdditionalNotes": "sample string 2"
}

Response Description