Slash Trace docs

Endpoints

Delete a board

Take a careers page off your list and free the slot.

DELETE/v1/boards/:id
curl -X DELETE "https://api.slashtrace.com/v1/boards/:id" \
  -H "Authorization: Bearer $API_KEY"

This removes your subscription, not the board. Careers pages are shared: ten accounts tracking Stripe share one board, one recipe and one scrape. Deleting yours leaves the board and its entire job history intact for everyone else — and if you add it again later, its history is still there.

The slot is freed immediately. If you were over your plan’s limit, a locked board is promoted to active and starts being read.

404 means “not on your list”, which covers both an id that does not exist and one belonging to a board you never tracked. The two are deliberately indistinguishable: telling them apart would let anyone with a key enumerate which boards exist.

Not idempotent in the HTTP sense — deleting twice gives 204 then 404. Treat both as success if you are retrying.