Updates a member in our system using the supplied data.

Endpoint URL

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

Parameters

MemberGuid
string
ClearVoice's unique identifier for the member.

Required
EmailAddress
string
EmailAddress for the member you will be creating.

Matching regular expression pattern: ^(?:[a-zA-Z0-9!#$%&'\*\+\-\/=\?\^_`\{\|\}~])+(?:\.([a-zA-Z0-9!#$%&'\*\+\-\/=\?\^_`\{\|\}~])+)*@(?<domain>(?:(?:(?:[a-zA-Z0-9]{1,63})|(?:[a-zA-Z0-9](?:[a-zA-Z0-9\-]){0,61}[a-zA-Z0-9]))\.)+(?i:com|net|org|edu|aero|asia|biz|cat|coop|gov|info|int|jobs|mil|mobi|museum|name|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|um|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zr|zw))$
Password
string
Members password that will be used for ClearVoice.
FirstName
string
The members FirstName.
LastName
string
The members LastName.
Address1
string
First line of the members home address.
Address2
string
Second line of the members home address.
City
string
City of the members home address.
StateAbbrv
string
State Abbreviation of the members home address.
ZipCode
string
ZipCode of the members home address.
Country
string
Country of the members home address.
Gender
string
The members gender (Male | Female)
DateOfBirth
date
Date the member was born.

Example Request Data

{
  "MemberGuid": "sample string 1",
  "EmailAddress": "sample string 2",
  "Password": "sample string 3",
  "FirstName": "sample string 4",
  "LastName": "sample string 5",
  "Address1": "sample string 6",
  "Address2": "sample string 7",
  "City": "sample string 8",
  "StateAbbrv": "sample string 9",
  "ZipCode": "sample string 10",
  "Country": "sample string 11",
  "Gender": "sample string 12",
  "DateOfBirth": "2025-09-18T16:33:35.0408606-04:00"
}

Response Description

MemberGuid
string
ClearVoice's unique identifier for a member.
ExternalMemberId
string
Id of member in external system.

Example Response

{
  "MemberGuid": "sample string 1",
  "ExternalMemberId": "sample string 2"
}