Memberships
Below is a definition of the Memberships object
[
{
"_id": "iHz7afKsBGE27rtvu",
"external_id": null,
"email": "[email protected]",
"display_name": "Mitchell Colleran",
"expiration_date": "2023-09-18T13:00:01.603Z",
"membership_type": "uKXThjCC5ftd33XB9",
"membership_name": "Basic",
"status": 100,
"customer_id": null,
"subscription_id": null,
"custom_answers": [
{
"question": "Favorite Day of the Week",
"answer": "Friday",
"question_id": "5EmEsZbGku9w2AvRv"
},
{
"question": "Do you agree to terms?",
"answer": "Accepted",
"question_id": "HEvbdXMrvk3EPEmFo"
}
],
"profile": {
"first_name": "Mitchell",
"last_name": "Colleran",
"company": "Join It, Inc",
"job_title": "Founder"
},
"profile_pic": null,
"profile_pic_crop": null,
"joined": "2022-09-18T13:00:01.618Z",
"created": "2022-09-18T13:00:01.618Z"
}
]
Field | Type | Description |
---|---|---|
_id | string | Internal ID to identify Memberships |
created | datetime | Datetime when the Membership was created in the Join It system |
joined | datetime | Datetime when the Membership join the Organization. While often the same as 'created', these values can be adjusted by admins or backdated during import. |
updated | datetime | Datetime when the Membership was last updated. |
display_name | string | String representing the primary display name of the Membership. Typically a combination of first_name + last_name, but a setting can adjust this to be the name of the Organization that is being represented (think Chamber of Commerces). |
string | Email address (hint: can be null) | |
status | number | Status of the Membership (50 = Prospective, 75 = Pending, 100 = Active, 300 = Expired, 350 = Cancelled). |
external_id | string | ID assigned by the Organization (hint: can be null) |
expiration_date | datetime | Datetime when a Membership is set to expire (can be null for lifetime or automatically re-billing Memberships) |
rebilling_date | datetime | Datetime when a Membership is set to automatically re-bill (can be null for one-time payment memberships or Memberships with an Expiration Date).` |
custom_answers | array | Array of Custom Answer Objects associated with the Membership |
custom_answers.$.question_id | string | Unique ID associated with the Question |
custom_answers.$.question | string | Prompt of the Question |
custom_answers.$.answer | string | Membership's respective Answer for the Question |
profile | object | Object that represents the Membership's profile information (individual object traits defined below) |
profile.first_name | string | First name of a Membership |
profile.last_name | string | Last name of a Membership |
profile.company | string | Company of a Membership |
profile.job_title | string | Job Title of a Membership |
profile.birthday | datetime | Birthday of a Membership |
profile.gender | string | Gender of a Membership |
profile.phone | string | Phone of a Membership |
profile.facebook | string | Facebook username of a Membership |
profile.twitter | string | Twitter username of a Membership |
profile.linkedin | string | Linkedin username of a Membership |
Updated about 2 years ago