0

I have created a cUrl to get a filtered list of contacts. Regardless of me passing the filter items I always get ALL of the contacts. Here is the curl:

curl -v -H "Authorization: Basic <MY API KEY>" https://api.insight.ly/v2.1/contacts?filter=LAST_NAME='Jones'

Any ideas?

Grokify
  • 15,092
  • 6
  • 60
  • 81
David
  • 320
  • 1
  • 6
  • 22

1 Answers1

0

Use filter like this

https://api.insight.ly/v2.1/contacts?$filter=LAST_NAME%20eq%20'Jones'