{
  "$result_object_key":  {
    "archived":  false,
    "archived_at":  "2024-07-04T10:32:12+00:00",
    "created_at":  "2024-07-04T10:32:12+00:00",
    "id":  "39580875173",
    "properties":  {
      "email":  "john.smith@gmail.com",
      "firstname":  "John",
      "lastname":  "Smith"
    },
    "recently_updated_property_names":  [
      "email",
      "firstname",
      "lastname"
    ],
    "updated_at":  "2024-07-04T10:32:12+00:00"
  }
}
{
  "$result_object_key":  {
    "archived":  "Whether the contact was archived",
    "archived_at":  "When the contact was archived",
    "created_at":  "When the contact was created",
    "id":  "ID",
    "properties":  {
      "key":  null,
      "value":  null
    },
    "recently_updated_property_names":  "The properties that were updated for a webhook event triggering this event payload to be created",
    "updated_at":  "When the contact was updated"
  }
}

Parameters

Action
Parameters
ID
string

ID This field maps to the destination API id field.

Email
string

PII This field maps to the destination API email field.

First Name
string

PII This field maps to the destination API firstName field.

Last Name
string

PII This field maps to the destination API lastName field.

Phone
string

PII This field maps to the destination API phone field.

Address
string

PII This field maps to the destination API address field.

City
string

PII This field maps to the destination API city field.

State
string

This field maps to the destination API state field.

Zip Code
string

PII This field maps to the destination API zip field.

Properties
Map<Contact Property,string>
required

HI ID PII This field maps to the destination API properties field.

Hubspot Defined Contact Associations
[]string
required

ID This field maps to the destination API associations field.

Hubspot Defined Company Associations
[]string
required

ID This field maps to the destination API associations field.

User Defined Contact Associations
Map<string,dynamic (any)>
required

ID This field maps to the destination API associations field.

{
  "$result_object_key":  {
    "archived":  false,
    "archived_at":  "2024-07-04T10:32:12+00:00",
    "created_at":  "2024-07-04T10:32:12+00:00",
    "id":  "39580875173",
    "properties":  {
      "email":  "john.smith@gmail.com",
      "firstname":  "John",
      "lastname":  "Smith"
    },
    "recently_updated_property_names":  [
      "email",
      "firstname",
      "lastname"
    ],
    "updated_at":  "2024-07-04T10:32:12+00:00"
  }
}
{
  "$result_object_key":  {
    "archived":  "Whether the contact was archived",
    "archived_at":  "When the contact was archived",
    "created_at":  "When the contact was created",
    "id":  "ID",
    "properties":  {
      "key":  null,
      "value":  null
    },
    "recently_updated_property_names":  "The properties that were updated for a webhook event triggering this event payload to be created",
    "updated_at":  "When the contact was updated"
  }
}

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.

Contact
Fetch Action Response Object
id
string
required

ID ID

CEL
$result_object_key.id
Example
"39580875173"
properties
Map<string,string>
required

HI ID PII Contact properties

CEL
$result_object_key.properties
Example
{
"email":  "john.smith@gmail.com",
"firstname":  "John",
"lastname":  "Smith"
}
archived
bool
required

Whether the contact was archived

CEL
$result_object_key.archived
Example
false
archived_at
timing.v1.Timestamp

When the contact was archived

CEL
$result_object_key.archived_at
Example
"2024-07-04T10:32:12+00:00"
created_at
timing.v1.Timestamp
required

When the contact was created

CEL
$result_object_key.created_at
Example
"2024-07-04T10:32:12+00:00"
updated_at
timing.v1.Timestamp
required

When the contact was updated

CEL
$result_object_key.updated_at
Example
"2024-07-04T10:32:12+00:00"
recently_updated_property_names
[]string
required

The properties that were updated for a webhook event triggering this event payload to be created

CEL
$result_object_key.recently_updated_property_names
Example
[
"email",
"firstname",
"lastname"
]