Events
- Active Campaign
- Acuity
- Axle Health
- Butterfly Labs
- Calendly
- Customer.io
- Elation
- Feathery
- Formsort
- Healthie
- Hubspot
- IntakeQ
- Junction
- Morf
- Segment
Actions
- Active Campaign
- Customer.io
- Facebook
- Freshdesk
- Google
- Healthie
- v1
- Append To Patient Quick Notes
- Complete Task
- Create Allergy Sensitivity
- Create Appointment
- Create Billing Item
- Create Conversation
- Create Document
- Create Family History
- Create Invoice
- Create Metric Entry
- Create Or Update Form Answer Group
- Create Or Update Insurance Policy
- Create Or Update Notification Contact
- Create Or Update Patient
- Create Or Update Patient Location
- Create Or Update Referring Provider
- Create Patient Stripe Credit Card
- Create Patient Stripe Credit Card V2
- Create Referral
- Create Requested Form Completion
- Create Task
- Get Appointment
- Get Onboarding Flow
- Get User
- List Appointments For Patient
- List Insurance Plans
- List Requested Form Completion
- Lock Form Answer Group
- Search Metric Entries
- Search Users
- Send Form Request Reminder
- Update Appointment
- Update Client Source
- Update Metric Entry
- Update Patient
- Update Patient Weight
- Update Tags
- v2
- Hubspot
- IntakeQ
- Intercom
- Mixpanel
- Morf
- Nextdoor
- Open Phone
- Segment
- Slack
- Spruce
- Stedi
- Stripe
- Tiktok
- Twilio
Search Metric Entries
Documentation for the Search Metric Entries action for Healthie
{
"$result_object_key": {
"metric_entries": [
{
"added_by_user": "901234",
"category": "Breakfast",
"created_at": "2023-04-01T14:30:00Z",
"description": "Banana and protein smoothie after workout",
"emotions": "Happy",
"id": "890123",
"name": "Morning Smoothie",
"type": "FoodEntry",
"value": 450
}
]
}
}
{
"$result_object_key": {
"metric_entries": {
"added_by_user": "ID of user that added the entry",
"category": "The category of this entry",
"created_at": "The time at which this entry was created",
"description": "The description for the entry",
"emotions": "The users emotions towards the meal",
"id": "The unique identifier of the entry",
"name": "The name for this entry",
"type": "The type for this entry, options are - FoodEntry, WorkoutEntry, MirrorEntry, SleepEntry, NoteEntry, WaterIntakeEntry, PoopEntry', null: false",
"value": "The `metric_stat` value of the metric entry"
}
}
}
Parameters
{
"$result_object_key": {
"metric_entries": [
{
"added_by_user": "901234",
"category": "Breakfast",
"created_at": "2023-04-01T14:30:00Z",
"description": "Banana and protein smoothie after workout",
"emotions": "Happy",
"id": "890123",
"name": "Morning Smoothie",
"type": "FoodEntry",
"value": 450
}
]
}
}
{
"$result_object_key": {
"metric_entries": {
"added_by_user": "ID of user that added the entry",
"category": "The category of this entry",
"created_at": "The time at which this entry was created",
"description": "The description for the entry",
"emotions": "The users emotions towards the meal",
"id": "The unique identifier of the entry",
"name": "The name for this entry",
"type": "The type for this entry, options are - FoodEntry, WorkoutEntry, MirrorEntry, SleepEntry, NoteEntry, WaterIntakeEntry, PoopEntry', null: false",
"value": "The `metric_stat` value of the metric entry"
}
}
}
Result Object Field Details
You can use the result of the action’s data as inputs to downstream workflow actions.
Each fetch action requires a result object key to be specified which will nest the action’s result data inside the downstream data context in the Workflow.
Here we demonstrate how to refer to this data using the prefix $result_object_key
.
List of metric entries
$result_object_key.metric_entries
[
{
"added_by_user": "901234",
"category": "Breakfast",
"created_at": "2023-04-01T14:30:00Z",
"description": "Banana and protein smoothie after workout",
"emotions": "Happy",
"id": "890123",
"name": "Morning Smoothie",
"type": "FoodEntry",
"value": 450
}
]
Mapped array of: The unique identifier of the entry
$result_object_key.metric_entries.map(x, x.id)
[
"890123"
]
Mapped array of: The type for this entry, options are - FoodEntry, WorkoutEntry, MirrorEntry, SleepEntry, NoteEntry, WaterIntakeEntry, PoopEntry’, null: false
$result_object_key.metric_entries.map(x, x.type)
[
"FoodEntry"
]
Mapped array of: ID of user that added the entry
$result_object_key.metric_entries.map(x, x.added_by_user)
[
"901234"
]
Mapped array of: The category of this entry
$result_object_key.metric_entries.map(x, x.category)
[
"Breakfast"
]
Mapped array of: The users emotions towards the meal
$result_object_key.metric_entries.map(x, x.emotions)
[
"Happy"
]
Mapped array of: The name for this entry
$result_object_key.metric_entries.map(x, x.name)
[
"Morning Smoothie"
]
Mapped array of: The description for the entry
$result_object_key.metric_entries.map(x, x.description)
[
"Banana and protein smoothie after workout"
]
Mapped array of: The time at which this entry was created
$result_object_key.metric_entries.map(x, x.created_at)
[
"2023-04-01T14:30:00Z"
]
Mapped array of: The metric_stat
value of the metric entry
$result_object_key.metric_entries.map(x, x.value)
[
450
]
{
"$result_object_key": {
"metric_entries": [
{
"added_by_user": "901234",
"category": "Breakfast",
"created_at": "2023-04-01T14:30:00Z",
"description": "Banana and protein smoothie after workout",
"emotions": "Happy",
"id": "890123",
"name": "Morning Smoothie",
"type": "FoodEntry",
"value": 450
}
]
}
}
{
"$result_object_key": {
"metric_entries": {
"added_by_user": "ID of user that added the entry",
"category": "The category of this entry",
"created_at": "The time at which this entry was created",
"description": "The description for the entry",
"emotions": "The users emotions towards the meal",
"id": "The unique identifier of the entry",
"name": "The name for this entry",
"type": "The type for this entry, options are - FoodEntry, WorkoutEntry, MirrorEntry, SleepEntry, NoteEntry, WaterIntakeEntry, PoopEntry', null: false",
"value": "The `metric_stat` value of the metric entry"
}
}
}