Sales Pointer - Dynamic Filters

This API returns the necessary data for the Sales Pointer filter types. The response includes the id and text fields (or displayValue if text is not available), along with other relevant details.

cURL 'https://api.enrich.so/v1/api/sales-pointer/filters?query=software engineer&page=1&filter_type=CURRENT_TITLE' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'

Filter types are :

  • CURRENT_TITLE

  • PAST_TITLE

  • REGION

  • COMPANY_HEADQUATERS

  • INDUSTRY

  • SCHOOL

  • POSTAL_CODE

  • FUNCTION

  • CURRENT_COMPANY

  • PAST_COMPANY

Example ussage

"filters": [
  {
    "type": "CURRENT_TITLE",
    "values": [
      {
        "id": "9", (response.data[0].id)
        "text": "Software Engineer", (response.data[0].text)
        "selectionType": "INCLUDED" | "EXCLUDED"
      }
    ],
    "selectedSubFilter": <Number | null>
  }
]

Example response

Status Code: 200 OK

Status code: 404 NOT FOUND

Last updated