Get All Notes associated with contacts

Hey all,

I am currently trying to get a list of all the notes associated just with contacts. This one does not seem to work

// /crm/v3/objects/notes/search
{
 "filterGroups": [
 {
 "filters": [
 {
 "propertyName": "associations.contact",
 "operator": "HAS_PROPERTY"
 },

 {
 "propertyName": "hs_createdate",
 "operator": "GT",
 "value": "1733831536497"
 }
 ]
 }
 ],
 "properties": [
 "hs_note_body"
 ]
}

Hey, @TKizlo :waving_hand: The Search API won’t return associations in the way you are looking for. You’ll either need to make two requests, one to the Search API and then a follow-up request to the Associations endpoints, to get what you are after. Or, if your portal has access, you can do this in a single request using our GraphQL endpoint.

Best,

Jaycee