Events
- Active Campaign
- Acuity
- Athena
- Axle Health
- Butterfly Labs
- Calendly
- Customer.io
- Elation
- Feathery
- Formsort
- Healthie
- Hubspot
- IntakeQ
- Junction
- Morf
- Segment
Actions
- Active Campaign
- Athena
- Customer.io
- Elation
- Facebook
- Freshdesk
- Google
- Healthie
- Hubspot
- IntakeQ
- Intercom
- Mixpanel
- Morf
- Nextdoor
- Open Phone
- Segment
- Slack
- Spruce
- Stedi
- Stripe
- Tiktok
- Twilio
Get Contact Deals
Documentation for the Get Contact Deals action for Active Campaign
Copy
{
"$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
}
]
}
Copy
{
"$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
Copy
{
"$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
}
]
}
Copy
{
"$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
.
ID
ID
CEL
Copy
$result_object_key[*].id
Example
Copy
"10"
ID
Contact ID
CEL
Copy
$result_object_key[*].contact_id
Example
Copy
"10"
Title
CEL
Copy
$result_object_key[*].title
Example
Copy
"Deal 1"
Currency
CEL
Copy
$result_object_key[*].currency
Example
Copy
"USD"
Deal group ID (pipeline ID)
CEL
Copy
$result_object_key[*].group
Example
Copy
"2"
Deal group stage ID (pipeline stage ID)
CEL
Copy
$result_object_key[*].stage
Example
Copy
"3"
Owner ID
CEL
Copy
$result_object_key[*].owner
Example
Copy
"10"
HI
ID
PII
Custom fields’ values
CEL
Copy
$result_object_key[*].field_values
Example
Copy
{
"Deal Note": "This is a note"
}
Deal value
CEL
Copy
$result_object_key[*].value
Example
Copy
100
Deal stage title
CEL
Copy
$result_object_key[*].stage_title
Example
Copy
"Stage 1"
Deal group title (pipeline title)
CEL
Copy
$result_object_key[*].group_title
Example
Copy
"Pipeline 1"
Copy
{
"$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
}
]
}
Copy
{
"$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"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.