Listing has started

PUB listing started
PUBLISH listing started

Message

Payload

  • type string Required
  • eventId string Required
  • eventDate string(date-time) Required
  • stockId string Required
  • listingId string Required
  • auction object Required

    Additional properties are allowed.

    Hide auction attributes Show auction attributes object
    • type string Required

      Type of auction

    • created string(date-time) Required
    • startTime string(date-time) Required
    • endTime string(date-time) Required
    • buyNowPrice number | null
    • reservePrice number | null
    • currentPrice number | null
  • negotiation object

    Optional block containing negotiation information

    Additional properties are allowed.

    Hide negotiation attribute Show negotiation attribute object
    • askingPrice number | null

      The amount of money that the seller would be willing to negotiate to

Payload examples
{
  "type": "listing.started",
  "eventId": "4965f54cdaea4226acde95e0d99b1acf",
  "eventDate": "2020-06-04T11:55:04+01:00",
  "stockId": "7be698d9-230f-4585-b17c-249bb1312580",
  "listingId": "000004ca-e5b9-428e-bea7-ed7ea827ffbb",
  "auction": {
    "type": "SEALED_BID",
    "created": "2020-06-04T11:55:04+01:00",
    "startTime": "2020-06-04T11:55:04+01:00",
    "endTime": "2020-06-06T11:55:04+01:00",
    "buyNowPrice": 3000,
    "reservePrice": 1000,
    "currentPrice": 2000
  },
  "negotiation": {
    "askingPrice": 1500
  }
}