{
  "$result_object_key":  [
    {
      "contact_id":  "10",
      "currency":  "USD",
      "field_values":  {
        "Deal Note":  "This is a note"
      },
      "group":  "2",
      "group_title":  "Pipeline 1",
      "id":  "10",
      "owner":  "10",
      "stage":  "3",
      "stage_title":  "Stage 1",
      "title":  "Deal 1",
      "value":  100
    }
  ]
}
{
  "$result_object_key":  [
    {
      "contact_id":  "Contact ID",
      "currency":  "Currency",
      "field_values":  "Custom fields' values",
      "group":  "Deal group ID (pipeline ID)",
      "group_title":  "Deal group title (pipeline title)",
      "id":  "ID",
      "owner":  "Owner ID",
      "stage":  "Deal group stage ID (pipeline stage ID)",
      "stage_title":  "Deal stage title",
      "title":  "Title",
      "value":  "Deal value"
    }
  ]
}

Parameters

Action
Parameters
Contact ID
string

ID

{
  "$result_object_key":  [
    {
      "contact_id":  "10",
      "currency":  "USD",
      "field_values":  {
        "Deal Note":  "This is a note"
      },
      "group":  "2",
      "group_title":  "Pipeline 1",
      "id":  "10",
      "owner":  "10",
      "stage":  "3",
      "stage_title":  "Stage 1",
      "title":  "Deal 1",
      "value":  100
    }
  ]
}
{
  "$result_object_key":  [
    {
      "contact_id":  "Contact ID",
      "currency":  "Currency",
      "field_values":  "Custom fields' values",
      "group":  "Deal group ID (pipeline ID)",
      "group_title":  "Deal group title (pipeline title)",
      "id":  "ID",
      "owner":  "Owner ID",
      "stage":  "Deal group stage ID (pipeline stage ID)",
      "stage_title":  "Deal stage title",
      "title":  "Title",
      "value":  "Deal value"
    }
  ]
}

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.

[]Deal
Fetch Action Response Object
id
string
required

ID ID

CEL
$result_object_key[*].id
Example
"10"
contact_id
string
required

ID Contact ID

CEL
$result_object_key[*].contact_id
Example
"10"
title
string
required

Title

CEL
$result_object_key[*].title
Example
"Deal 1"
currency
string
required

Currency

CEL
$result_object_key[*].currency
Example
"USD"
group
string
required

Deal group ID (pipeline ID)

CEL
$result_object_key[*].group
Example
"2"
stage
string
required

Deal group stage ID (pipeline stage ID)

CEL
$result_object_key[*].stage
Example
"3"
owner
string
required

Owner ID

CEL
$result_object_key[*].owner
Example
"10"
field_values
object
required

HI ID PII Custom fields’ values

CEL
$result_object_key[*].field_values
Example
{
"Deal Note":  "This is a note"
}
value
float64 (double)
required

Deal value

CEL
$result_object_key[*].value
Example
100
stage_title
string

Deal stage title

CEL
$result_object_key[*].stage_title
Example
"Stage 1"
group_title
string

Deal group title (pipeline title)

CEL
$result_object_key[*].group_title
Example
"Pipeline 1"