Skip to main content
< All Topics
Print

In the middletwin platform, members are the object types that contain contact information for individual members. If performing an action like sending a message or an email, you will need to provide a member id. Members have the following actions.

create_member

update_member

delete_member

get_member

get_all_members

get_matching_members

Contact Properties for create/update actions

FieldRequiredDescription
idUpdate/Deletelong – The id of the member
fnamenString – The members first name (64 max)
lnamenString – The members last name (64 max)
addressnString – The members street address (128 max)
citynString – The members city (64 max)
statenString – The members state (32 max)
zipnString – The members zip (16 max)
phone1yString – The members mobile number (24 max)
phone2nString – The members other number (24 max)
email_addressnString – The members other number (128 max)
stoppednboolean – The members 

get_all_members has an optional type parameter which defaults to json, but you can specify csv to get a csv response.

get_matching_members requires the search_term parameter. The search_term is a String and will be compared against the members name, city, state, and email address. Matching members will be returned in an array. 

Table of Contents