UserRecord
- userType: string · User Id
_id min length:1max length:512requiredUnique identifier for a user who has signed in.
user_idcan be in any format (e.g. users' email, internal user UUID or serial ID). The only restriction is that the first character must not be an underline_. Miso will use this id to cross-reference your User records with your Interaction records. - ageType: integer · Age
Age of the user. We will internally convert it to year of birth.
- cityType: string · City
City or zipcode the user is based in.
- countryType: string · Country
Country the user is based in.
- created
_at The date the user’s account was created as an ISO-8601 date or datetime string.
- Type: string · Created AtFormat: date-time
The date the user’s account was created as an ISO-8601 date or datetime string.
- customType: object · Custom Attributes
_attributes Dictionary of custom attributes about the user. As with the Product API, you can specify attributes specific to your business in a
{"KEY" : VALUE}format, whereKEYmust be a string, andVALUEcan be:-
a
stringoran array of strings -
a
numberoran array of numbers -
an
array of objects -
a
bool -
null -
Example:
{ "custom_attributes": { "acquisition_channel": "Facebook Campaign 2020", "declared_interests": ["Drama", "Romance"] } }These custom attributes types must be consistent across all User records in your data set. Records with inconsistent types will fail to be inserted.
- property
Name - Type: boolean
-
- descriptionType: string · Description
Text description of the user. This can be the user's own bio or the internal notes about the user. If available, Miso will analyze this description to better profile a user.
- genderType: string · Gender
The user's gender.
- groupType: string · Group Id
_id Group or Account ID from your CRM. This is useful in B2B scenarios. For example, you can use
group_idto associate a user with their company or account. We will use this information to infer the user's interests and fine-tune their personalization and search results. For example, users from the same group might have similar interests on the site, and we can improve their user experience accordingly - nameType: string · Name
The user's full name.
- profileType: string · Profile Image
_image min length:1max length:65536Format: uriURL to the profile image of the user.
- stateType: string · State
State the user is based in.
- updated
_at The date the user’s account was updated as an ISO-8601 date or datetime string.
- Type: string · Updated AtFormat: date-time
The date the user’s account was updated as an ISO-8601 date or datetime string.
