Events
- Active Campaign
- Acuity
- Athena
- Axle Health
- Butterfly Labs
- Calendly
- Customer.io
- Elation
- Feathery
- Formsort
- Healthie
- Hubspot
- IntakeQ
- Junction
- Morf
- Segment
Actions
- Active Campaign
- Athena
- Customer.io
- Elation
- 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 Appointment Slot Availability
- 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
Create Family History
Documentation for the Create Family History action for Healthie
Copy
{
"$result_object_key": [
{
"id": "4894",
"is_duplicate": false,
"relationships": "Mother",
"snomed_term": {
"concept_id": "12345",
"term": "Diabetes"
}
}
]
}
Copy
{
"$result_object_key": [
{
"id": "The unique identifier of the family history condition",
"is_duplicate": "Is the condition a duplicate",
"relationships": "Enum field for family relationships",
"snomed_term": {
"concept_id": "ID for snomed term",
"term": "Snomed term name"
}
}
]
}
Parameters
Copy
{
"$result_object_key": [
{
"id": "4894",
"is_duplicate": false,
"relationships": "Mother",
"snomed_term": {
"concept_id": "12345",
"term": "Diabetes"
}
}
]
}
Copy
{
"$result_object_key": [
{
"id": "The unique identifier of the family history condition",
"is_duplicate": "Is the condition a duplicate",
"relationships": "Enum field for family relationships",
"snomed_term": {
"concept_id": "ID for snomed term",
"term": "Snomed term name"
}
}
]
}
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
.
The unique identifier of the family history condition
CEL
Copy
$result_object_key[*].id
Example
Copy
"4894"
Enum field for family relationships
CEL
Copy
$result_object_key[*].relationships
Example
Copy
"Mother"
Snomed term associated with the condition
CEL
Copy
$result_object_key[*].snomed_term
Example
Copy
{
"concept_id": "12345",
"term": "Diabetes"
}
ID for snomed term
CEL
Copy
$result_object_key[*].snomed_term.concept_id
Example
Copy
"12345"
Snomed term name
CEL
Copy
$result_object_key[*].snomed_term.term
Example
Copy
"Diabetes"
Is the condition a duplicate
CEL
Copy
$result_object_key[*].is_duplicate
Example
Copy
false
Copy
{
"$result_object_key": [
{
"id": "4894",
"is_duplicate": false,
"relationships": "Mother",
"snomed_term": {
"concept_id": "12345",
"term": "Diabetes"
}
}
]
}
Copy
{
"$result_object_key": [
{
"id": "The unique identifier of the family history condition",
"is_duplicate": "Is the condition a duplicate",
"relationships": "Enum field for family relationships",
"snomed_term": {
"concept_id": "ID for snomed term",
"term": "Snomed term name"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.