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": "10bf7b85-2612-4a36-873f-c8258cdde7b4",
"ExternalMemberId": "sample string 2",
"DemographicAnswers": [
{
"DemographicGuid": "56c7594b-f547-41e7-91e1-5b424a060fd2",
"AnswerGuid": "2aaa54ce-a658-4da2-80c1-d1ddab54e8d6",
"GroupNumber": 64,
"AnswerText": "sample string 5"
},
{
"DemographicGuid": "56c7594b-f547-41e7-91e1-5b424a060fd2",
"AnswerGuid": "2aaa54ce-a658-4da2-80c1-d1ddab54e8d6",
"GroupNumber": 64,
"AnswerText": "sample string 5"
}
]
}
Response Description
HTTP Status Code 204 will be returned when the operation completes successfully.