Allows for a members Answers to a Demographic to be saved. All previous answers for a member for the supplied demographics will be deleted before the new Answers are saved.

Endpoint URL

http://api.clearvoicesurveys.com/api/v1/member/savedemographicanswers

Parameters

MemberGuid
globally unique identifier
ClearVoice's unique identifier for the member in your organization. MemberGuid or ExternalMemberId must be provided or a Http Status Code of 400 will be returned.
ExternalMemberId
string
Client's identifier for the member. MemberGuid or ExternalMemberId must be provided or a Http Status Code of 400 will be returned.
DemographicAnswers
Collection of SaveMemberDemographicAnswer
List of demographics and answers that will be saved for the supplied member.

Required

Example Request Data

{
  "MemberGuid": "b08d1e36-2e8a-4f6b-ac8d-f904699a15b6",
  "ExternalMemberId": "sample string 2",
  "DemographicAnswers": [
    {
      "DemographicGuid": "cb38a388-07b8-461c-9238-04d92adcc8c7",
      "AnswerGuid": "63cb8f97-7547-4543-befe-ed31da9cbfcc",
      "GroupNumber": 64,
      "AnswerText": "sample string 5"
    },
    {
      "DemographicGuid": "cb38a388-07b8-461c-9238-04d92adcc8c7",
      "AnswerGuid": "63cb8f97-7547-4543-befe-ed31da9cbfcc",
      "GroupNumber": 64,
      "AnswerText": "sample string 5"
    }
  ]
}

Response Description

HTTP Status Code 204 will be returned when the operation completes successfully.