Skip to content

POST /v3/item/:id/auto-bid

POST
/v3/item/{itemId}/auto-bid
curl --request POST \
--url https://api-ha-prod-p8.handbid.dev/v3/item/example/auto-bid \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: */*' \
--data '"{\n \"maxAmount\": 100\n}"'

NEW (HAN-1687, 2026-05-06). Set or update an auto-bid (max bid ceiling).

Body:

  • maxAmount (required, positive number) — ceiling in DOLLARS.

Response (200): same shape as POST /bid. autoBidMax is now non-null and reflects the configured ceiling.

Internally an HbMaxBid row is created/updated and an associated HbBid advances the proxy ladder to one increment below the new max (or to current+increment, whichever is higher). Same V1 validation pipeline as POST /bid.

itemId
required
string
Media type */*
string
Example
"{\n \"maxAmount\": 100\n}"

Successful response

Media type application/json