Howdy all,
I am a relative newbie to the API-webhook-integration world so if my apologies ahead of time for what might be a simple question.
I’m trying to get name and email of Contacts when they are added to a list. Following the API documentation, here’s what I’ve done:
Step 1.
GET https://api.hubapi.com/crm/v3/lists/ListID/memberships/join-order
THis works successfully and get all the members of the list.
Step 2.
POST https://api.hubapi.com/crm/v3/objects/contacts/search
Body:
{
“properties”: [
“firstname”,
“lastname”,
“email”,
“hs_object_id”,
“createdate”,
“lastmodifieddate”,
“hs_all_accessible_team_ids”
],
“filterGroups”: [
{
“filters”: [
{
“propertyName”: “hs_object_id”,
“operator”: “IN”,
“values”: [
“808431983”,
“802539655”,
“101”
]
}
]
}
]
}
Which does not have an error, but does not show recently added members to the list.
I know I’m missing something basic, but I haven’t been able to find any tutorial for guidance.
BTW… I’m using MS Power Automate.
Thanks for any help to anyone would give to complete novice.