Summaries
daily.data.profile.created
Summaries
daily.data.profile.created
User profile data has been updated
Each summary object is uniquely identified by its id
.
If multiple events are received at the same id
, the last event received replaces all its previous
versions.
Properties
event_typerequired
const string
Constant: daily.data.profile.created
datarequired
ClientFacingProfile
user_idrequired
string
User id returned by vital create user request. This id should be stored in your database against the user and used for all interactions with the vital api.
user_key
string | null
[⚠️ Deprecated] User key returned by vital create user key request. This key should be stored in your database against the user and used for all interactions with the vital api.
idrequired
string
height
integer | null
sourcerequired
ClientFacingSource
namerequired
string
Name of source of information
slugrequired
string
Slug for designated source
logorequired
string
URL for source logo
Examples
{
"event_type": "daily.data.profile.created",
"data": {
"id": "976c7753-12b5-468f-aaf7-9f38ed678e2d",
"height": 183,
"source": {
"name": "Oura",
"slug": "oura",
"logo": "https://logo_url.com"
},
"user_id": "6abdccc7-83d7-45a6-a37c-4bfd4bb1b559"
}
}