LotFollowedEventV1
v0.0.1

Holds information about when a client follows a lot in online or live auction.
When firing this event make sure you set the `correlation-id` in the headers. Our schemas have standard metadata make sure you read and follow it.

Details

This event can be triggered multiple times per client. Everytime the clients follows a lot on online auction page it will trigger this event.

Consumer / Producer Diagram

LotFollowedEventV1 Schema (json)
{
  "$id": "https://example.com/LotFollowedEventV1.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LotFollowedEventV1",
  "description": "An event raised when a client follows live or online lot",
  "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 LotFollowedEventV1"
        },
        "source": {
          "type": "string",
          "description": "The source of the event like was it genereated by Client using Web or WeChat"
        },
        "sourceTimeZone": {
          "type": "string",
          "description": "Timezone of the client source when followed and unfollowed auction/lot (NOT Available)"
        },
        "version":{
         "type": "number",
         "description": "The version of the event"
       },
        "sentAtUTC": {
          "type": "string",
          "description":  "When event was send by the publishers in ISO 8601 "
        }
        
      },
      "required": [ "occurredAtUtc", "typeName", "sentAtUTC", "version"]
    },
    "data": {
      "type": "object",
      "properties": {
        "clientId": {
          "type": "string",
          "description": "The GUID of logged in Client (Christies Client GUID)"
        },  
        "clientNumber": {
          "type": "number",
          "description": "The COS number of the client"
        },         
        "auctionId": {
          "type": "number",
          "description": "Christies assigned Auction ID - DotCom Sale Id"
        },
        "onlineAuctionId": {
          "type": "number",
          "description": "Novafori assigned auction Id"
        },
        "lotId":{
          "type": "string",
          "description": "This is the sale number and lot number and lot suffix e.g. 21231.5A"
        },
        "auctionType": {
          "type": "string",
          "description": "Auction type Online or Live"
        }       
      }
    }
  }
}
Edit this pageLast updated on 2026/1/30