Creates a member in our system.

Endpoint URL

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

Parameters

EmailAddress
string
EmailAddress for the member you will be creating.

Required

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))$
Title
string
The members Title. This is not actually stored in our system but is used to help verify a persons gender.
FirstName
string
The members FirstName.

Required
LastName
string
The members LastName.

Required
Gender
string
The members gender (Male | Female)
DateOfBirth
date
Date the member was born.
Password
string
Members password that will be used for ClearVoice.
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.
LanguagePreference
string
Language preferred by the member. Current supported values for this field are: en-us, french, fr, or fr-ca. If nothing is provided this will default to en-us.
Campaign
string
Campaign the user to be created was sourced from.
AdGroup
string
AdGroup the user to be created was sourced from.
Ad
string
Ad the user to be created was sourced from.
IpAddress
string
The members primary IpAddress.
ChildBirthDate
date
Members child's birthdate.
RegistrationQueryString
string
Registration query string associated with member's registration. Used for tracking where the user to be created was sourced from.

Example Request Data

{
  "EmailAddress": "sample string 1",
  "Title": "sample string 2",
  "FirstName": "sample string 3",
  "LastName": "sample string 4",
  "Gender": "sample string 5",
  "DateOfBirth": "2025-09-18T16:32:34.4307098-04:00",
  "Password": "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",
  "LanguagePreference": "sample string 13",
  "Campaign": "sample string 14",
  "AdGroup": "sample string 15",
  "Ad": "sample string 16",
  "IpAddress": "sample string 17",
  "ChildBirthDate": "2025-09-18T16:32:34.4307098-04:00",
  "RegistrationQueryString": "sample string 18"
}

Response Description

MemberGuid
string
ClearVoice's unique identifier for a member.

Example Response

{
  "MemberGuid": "sample string 1"
}