Changelog

v2.4 - 2026-06-15

Added

  • Added reverse_companies to export lead API responses.
    • Available on GET /exports/{id}/leads.
    • Returned when reverse sourcing is enabled and candidate final-client companies are found.
    • Each company includes standard company fields plus optional probability and explanation.

v2.3 - 2026-06-04

Added

  • Added config.setting.enable_icebreaker to API configuration payloads.
    • When enabled, Mantiks generates an explanation and icebreaker for each lead.
  • Added config.company.enable_reverse_sourcing to API configuration payloads.
    • When enabled, Mantiks searches recruiting-sector job offers and tries to identify the final client.
  • Added the GET /jobs/{id}/reverse-sourcing-agent endpoint.
    • Starts reverse sourcing for a specific job.
    • Returns candidate companies with company_id, probability, and optional explanation.

v2.2 - 2026-04-28

Added people.persona_strategy to API configuration payloads.

API callers can now choose the persona matching behavior with the same values used internally by Mantiks:

  • best: keep the best matching persona
  • all: include all matching personas

v2.1 - 2026-04-21

Changed

  • Updated Search Config in the public API:
    • Renamed people.persona_id to people.personas_ids
    • Changed the field type from a single string to an array of persona IDs

Why

  • This aligns the API config format with the existing model, where multiple personas can already be selected.

Migration

Before:

{
  "people": {
    "persona_id": "special-best-fitting"
  }
}

After:

{
  "people": {
    "personas_ids": ["special-best-fitting"]
  }
}