Updates a member in our system using the supplied data.

Endpoint URL

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

Parameters

MemberGuid
string
ClearVoice's unique identifier for the member.
ExternalMemberId
string
Id of source system, stored as member_external_id locally
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))$
FirstName
string
The members FirstName.
LastName
string
The members LastName.
MiddleName
string
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.
MobilePhone
string
Members mobile telephone number.
HomePhone
string
WorkPhone
string
IsEnabled
boolean
IsDoi
boolean
DoiDate
date
IsFraud
boolean
FraudDate
date
LastLogonDate
date

Example Request Data

{
  "MemberGuid": "sample string 1",
  "ExternalMemberId": "sample string 2",
  "EmailAddress": "sample string 3",
  "FirstName": "sample string 4",
  "LastName": "sample string 5",
  "MiddleName": "sample string 6",
  "Address1": "sample string 7",
  "Address2": "sample string 8",
  "City": "sample string 9",
  "StateAbbrv": "sample string 10",
  "ZipCode": "sample string 11",
  "Country": "sample string 12",
  "Gender": "sample string 13",
  "DateOfBirth": "2025-09-18T16:31:52.8049394-04:00",
  "MobilePhone": "sample string 14",
  "HomePhone": "sample string 15",
  "WorkPhone": "sample string 16",
  "IsEnabled": true,
  "IsDoi": true,
  "DoiDate": "2025-09-18T16:31:52.8049394-04:00",
  "IsFraud": true,
  "FraudDate": "2025-09-18T16:31:52.8049394-04:00",
  "LastLogonDate": "2025-09-18T16:31:52.8049394-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"
}