curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#HUBSPOT_SEARCH_RECORDS_ENGAGEMENTS' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "HUBSPOT_SEARCH_RECORDS_ENGAGEMENTS",
"parameters": {
"engagementType": "CALL",
"engagementTypeFilterFormula": {
"operator": "OR",
"conditions": [
{
"operator": "AND",
"conditions": [
{
"field": "hs_createdate",
"operator": "$stringExactlyMatches",
"value": "<string>"
}
]
}
]
},
"engagementFilterFormula": {
"operator": "OR",
"conditions": [
{
"operator": "AND",
"conditions": [
{
"field": "contactIds",
"operator": "$stringExactlyMatches",
"value": "<string>"
}
]
}
]
},
"paginationParameters": {
"pageCursor": "<string>"
}
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#HUBSPOT_SEARCH_RECORDS_ENGAGEMENTS' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "HUBSPOT_SEARCH_RECORDS_ENGAGEMENTS",
"parameters": {
"engagementType": "CALL",
"engagementTypeFilterFormula": {
"operator": "OR",
"conditions": [
{
"operator": "AND",
"conditions": [
{
"field": "hs_createdate",
"operator": "$stringExactlyMatches",
"value": "<string>"
}
]
}
]
},
"engagementFilterFormula": {
"operator": "OR",
"conditions": [
{
"operator": "AND",
"conditions": [
{
"field": "contactIds",
"operator": "$stringExactlyMatches",
"value": "<string>"
}
]
}
]
},
"paginationParameters": {
"pageCursor": "<string>"
}
}
}
'Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Engagement Type
CALL, EMAIL, MEETING, NOTE, TASK A filter in disjunctive normal form: OR of AND groups of single conditions
Show child attributes
Top-level operator must be OR (DNF enforced)
OR Each item is an AND group (a conjunction of single conditions)
Show child attributes
Each group is an AND of single conditions
AND List of single conditions (AND together)
Show child attributes
hs_createdate, hs_lastmodifieddate, hs_object_id $stringExactlyMatches, $dateTimeEquals, $dateTimeBefore, $dateTimeAfter, $numberGreaterThanOrEqualTo, $numberLessThanOrEqualTo, $numberGreaterThan, $numberLessThan, $numberEquals, $numberDoesNotEqual Value to compare against
A filter in disjunctive normal form: OR of AND groups of single conditions
Show child attributes
Top-level operator must be OR (DNF enforced)
OR Each item is an AND group (a conjunction of single conditions)
Show child attributes
Each group is an AND of single conditions
AND List of single conditions (AND together)
Show child attributes
contactIds, companyIds, dealIds, ownerIds, ticketIds $stringExactlyMatches Value to compare against
Success
Was this page helpful?