Saved searches & subscriptions

PATCH /me/subscriptions/{id} Session only

Pause or resume a subscription.

Path parameters

id integer required
The subscription id.Example 1

Body

active boolean required
Whether the subscription is active.Example false
curl
curl -X PATCH "https://freehire.dev/api/v1/me/subscriptions/1" \
  -H 'Content-Type: application/json' -b cookies.txt \
  -d '{"active":false}'
json — response
{ "data": { "id": 1, "active": false } }