{
  "$result_object_key":  {
    "email_address":  "john.doe@example.com",
    "first_name":  "John",
    "id":  "212012",
    "is_emergency_contact":  true,
    "last_name":  "Doe",
    "phone_number":  "+15551234123",
    "relationship":  "Caregiver"
  }
}
{
  "$result_object_key":  {
    "email_address":  "Email address of the notification contact",
    "first_name":  "First name of the notification contact",
    "id":  "ID for the notification contact",
    "is_emergency_contact":  "Whether the notification contact is an emergency contact",
    "last_name":  "Last name of the notification contact",
    "phone_number":  "Phone number of the notification contact",
    "relationship":  "Relationship between the notification contact and the user"
  }
}

Parameters

Action
Parameters
ID
string

ID This field maps to the destination API id field.

First Name
string

PII This field maps to the destination API first_name field.

Last Name
string

PII This field maps to the destination API last_name field.

Phone Number
string

PII This field maps to the destination API phone_number field.

Email
string

PII This field maps to the destination API email field.

Emergency
bool

This field maps to the destination API emergency field.

Relationship
string

This field maps to the destination API relationship field.

Notification Contact Array Index
int64

This field maps to the destination API 0..n notification contacts array index (default 0) field.

{
  "$result_object_key":  {
    "email_address":  "john.doe@example.com",
    "first_name":  "John",
    "id":  "212012",
    "is_emergency_contact":  true,
    "last_name":  "Doe",
    "phone_number":  "+15551234123",
    "relationship":  "Caregiver"
  }
}
{
  "$result_object_key":  {
    "email_address":  "Email address of the notification contact",
    "first_name":  "First name of the notification contact",
    "id":  "ID for the notification contact",
    "is_emergency_contact":  "Whether the notification contact is an emergency contact",
    "last_name":  "Last name of the notification contact",
    "phone_number":  "Phone number of the notification contact",
    "relationship":  "Relationship between the notification contact and the user"
  }
}

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.

NotificationContact
Fetch Action Response Object
id
string
required

ID for the notification contact

CEL
$result_object_key.id
Example
"212012"
first_name
string

First name of the notification contact

CEL
$result_object_key.first_name
Example
"John"
last_name
string

Last name of the notification contact

CEL
$result_object_key.last_name
Example
"Doe"
email_address
string

PII Email address of the notification contact

CEL
$result_object_key.email_address
Example
"john.doe@example.com"
is_emergency_contact
bool
required

Whether the notification contact is an emergency contact

CEL
$result_object_key.is_emergency_contact
Example
true
phone_number
string

PII Phone number of the notification contact

CEL
$result_object_key.phone_number
Example
"+15551234123"
relationship
string

Relationship between the notification contact and the user

CEL
$result_object_key.relationship
Example
"Caregiver"