DELETE /v3/item/:id/auto-bid
DELETE
/v3/item/{itemId}/auto-bid
const url = 'https://api-ha-prod-p8.handbid.dev/v3/item/example/auto-bid';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://api-ha-prod-p8.handbid.dev/v3/item/example/auto-bid \ --header 'Authorization: Bearer <token>'NEW (HAN-1687, 2026-05-06). Remove the user’s active auto-bid.
Response (200): post-state object, autoBidMax: null.
Marks the active HbMaxBid row STATUS_REMOVED, detaches its maxId link from the user’s winning HbBid row, and zeros items.highestProxyBid so the proxy ladder rewinds. Mirrors the V1 BidController::actionRemove max-bid removal slice.
404 not_found if the user has no active or non-removed max-bid for this item.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” itemId
required
string
Responses
Section titled “ Responses ”Successful response
Media type application/json