Application mail
POST /me/tracking/{slug}/mail-recall Session or API key
Sweep your connected mailbox for mail belonging to this application.
For an application whose mail arrived before you connected an inbox, or that a sync missed. Runs an LLM pass over your mailbox and returns matches as suggestions — it never links or writes the ledger itself; confirm a pick with POST /me/tracking/{slug}/mail-recall/link. Rate-limited. A 503 when no mail gateway is configured, a 502 when the model call fails.
Path parameters
slugstring required- The job
public_slug.
curl -X POST "https://freehire.me/api/v1/me/tracking/<slug>/mail-recall" -H "Authorization: Bearer $HIREALL_API_KEY"{
"data": {
"scanned": 340,
"suggested": [
{ "id": 0, "provider_id": "18f2a…", "from_addr": "recruiting@acme.com", "from_name": "Acme Recruiting", "subject": "Interview invitation", "received_at": "2026-07-15T09:00:00Z", "invitation": true }
],
"invitations": 1
}
}