LotWithdrawn
v0.0.1

Holds information about lots withdrawn during an online auction.
When firing this event make sure you set the `correlationId` in the headers. Our schemas have standard metadata make sure you read and follow it.

Details

This event indicates a lot has been withdrawn. It only occurs after the sale has started, the sale has not closed and the lot has not closed. It only occurs after the sale has started, the sale has not closed and the lot has not closed.

Consumer / Producer Diagram

LotWithdrawn Schema (json)
{
  "$id": "https://example.com/LotWithdrawn.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LotWithdrawn",
  "description": "An event raised when a lot is withdrawn in an online auction",
  "type": "object",
  "properties": {
    "metadata": {
      "type": "object",
      "properties": {
        "occurredAtUtc": {
          "type": "string",
          "description": "The date and time when event occurred in UTC. Date should be represented in ISO 8601 format e.g 2023-09-08T12:00:00Z"
        },
        "typeName": {
          "type": "string",
          "description": "The name of the event. E.g LotWithdrawn"
        },
        "source": {
          "type": "string",
          "description": "The source channel of the original bid. Valid values - Web > Online, Admin > Online, WeChat > Online, iOS > Online, Web > Live, Admin > Live, WeChat > Live, iOS > Live"
        },
        "sourceTimeZone": {
          "type": "string",
          "description": "Timezone of the client source when followed and unfollowed auction/lot"
        },
        "version": {
          "type": "string",
          "description": "Version number in format of V{n} for e.g V1, V2"
          },  
        "sentAtUtc": {
            "type": "string",
            "description":  "When was the event sent by the publishers. (in ISO 8601 format)"
          }       
      },
      "required": [ "occurredAtUtc", "typeName", "sentAtUtc", "version"]
    }
  },
    "data": {
      "type": "object",
      "properties": {
        "lotId": {
          "type": "string",
          "description": "Required. Unique id of the object the sale is extended for. This is the sale number and lot number and lot suffix e.g. 21231.5a"
        }
      }
    }
}
Edit this pageLast updated on 2026/1/30