{
  "$result_object_key":  [
    {
      "id":  "4894",
      "is_duplicate":  false,
      "relationships":  "Mother",
      "snomed_term":  {
        "concept_id":  "12345",
        "term":  "Diabetes"
      }
    }
  ]
}
{
  "$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

Action
Parameters
Healthie Snomed Terms
[]string

HI This field maps to the destination API concept_id field.

Relationships
[]string

HI This field maps to the destination API relationships field.

Patient ID
string

ID This field maps to the destination API user_id field.

{
  "$result_object_key":  [
    {
      "id":  "4894",
      "is_duplicate":  false,
      "relationships":  "Mother",
      "snomed_term":  {
        "concept_id":  "12345",
        "term":  "Diabetes"
      }
    }
  ]
}
{
  "$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.

[]FamilyHistoryCondition
Fetch Action Response Object
id
string
required

The unique identifier of the family history condition

CEL
$result_object_key[*].id
Example
"4894"
relationships
[]string
required

Enum field for family relationships

CEL
$result_object_key[*].relationships
Example
"Mother"
snomed_term
object

Snomed term associated with the condition

CEL
$result_object_key[*].snomed_term
Example
{
"concept_id":  "12345",
"term":  "Diabetes"
}
snomed_term.concept_id
string

ID for snomed term

CEL
$result_object_key[*].snomed_term.concept_id
Example
"12345"
snomed_term.term
string

Snomed term name

CEL
$result_object_key[*].snomed_term.term
Example
"Diabetes"
is_duplicate
bool
required

Is the condition a duplicate

CEL
$result_object_key[*].is_duplicate
Example
false