marketRelistListing
Cancel and re-list at a new price in one step.
Three operations in one: cancel, reclaim to the stash, re-register. If the re-register fails the item is safe in your stash and the reply says `delisted: true` — the item is never lost, but the listing is gone. A second listing fee is charged.
In Marketplace.
Request
POST /api/v1/sessions/{accountKey}/actions/marketRelistListing
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
listingId (listing_id) | string | yes | From `marketList` or `myMarketList`. It exceeds 2^53, so it travels as a string — parsing it as a JSON number will corrupt it. |
price | integer | yes | The new asking price. |
Example request
{ "listingId": "9007199254740993", "price": 21500 }
Response
`{ ok: true, price, count, item }`.
| Field | Type | Meaning |
|---|---|---|
item | string | The item's display name. |
delisted | boolean | On failure only. True means it was cancelled and reclaimed but not re-listed — it is in your stash. |
Example response
{ "ok": true, "price": 21500, "count": 1, "item": "Adventurer Boots" }
Errors
| Code | When |
|---|---|
action_failed | The listing is not live, the cancel failed, or the re-list failed (`delisted` says how far it got). |
plan_limit | Not on the free plan. |
See also
DarkerAPI is an independent project. It is not affiliated with, endorsed by or associated with IRONMACE Co., Ltd. or Valve Corporation. “Dark and Darker” and related marks belong to their respective owners.