Saved searches & subscriptions

POST /me/subscriptions Session only

Subscribe a saved search to a digest channel.

Body

saved_search_id integer required
The saved search to subscribe.Example 2
channel string required
Delivery channel.Example telegram
curl
curl -X POST "https://freehire.dev/api/v1/me/subscriptions" \
  -H 'Content-Type: application/json' -b cookies.txt \
  -d '{"saved_search_id":2,"channel":"telegram"}'
json — response
{ "data": { "id": 1, "saved_search_id": 2, "channel": "telegram", "active": true } }