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 |
| ExternalMemberId string |
| DemographicAnswers Collection of SaveMemberDemographicAnswer |
Example Request Data
{
"MemberGuid": "1869bca8-82df-4c29-99c7-4b75b55037cd",
"ExternalMemberId": "sample string 2",
"DemographicAnswers": [
{
"DemographicGuid": "2fc98213-656b-442a-9af3-60c569d0e6de",
"AnswerGuid": "2437c361-e3c6-4cde-8000-b94fb3a135f1",
"GroupNumber": 64,
"AnswerText": "sample string 5"
},
{
"DemographicGuid": "2fc98213-656b-442a-9af3-60c569d0e6de",
"AnswerGuid": "2437c361-e3c6-4cde-8000-b94fb3a135f1",
"GroupNumber": 64,
"AnswerText": "sample string 5"
}
]
}
Response Description
HTTP Status Code 204 will be returned when the operation completes successfully.