Documentation Index Fetch the complete documentation index at: https://docs.morf.health/docs/llms.txt
Use this file to discover all available pages before exploring further.
Parameters
{
"$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 Description
{
"$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 Contact ID$result_object_key[ * ].contact_id
Title $result_object_key[ * ].title
Currency $result_object_key[ * ].currency
Deal group ID (pipeline ID) $result_object_key[ * ].group
Deal group stage ID (pipeline stage ID) $result_object_key[ * ].stage
Owner ID $result_object_key[ * ].owner
HI ID PII Custom fields’ values$result_object_key[ * ].field_values
{
"Deal Note" : "This is a note"
}
Deal value $result_object_key[ * ].value
Deal stage title $result_object_key[ * ].stage_title
Deal group title (pipeline title) $result_object_key[ * ].group_title