AuctionRegistrationCreated
v0.0.1

The “ClientAuctionRegistrationCreated” used to publish the fact that a client has registered for an 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

The “ClientAuctionRegistrationCreated” used to publish the fact that a client has registered for an auction.

Consumer / Producer Diagram

AuctionRegistrationCreated Schema (json)
{
	"$id": "https://example.com/ClientAuctionRegistrationCreated.json",
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"title": "ClientAuctionRegistrationCreated",
	"description": "An event raised to publish that a client registered for 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 clientAuctionRegistrationCreated"
				},
				"source": {
					"type": "string",
					"description": "The source channel of client auction registration event."
				},
				"sourceTimeZone": {
					"type": "string",
					"description": "Source Timezone of the client when auction registration created event was published."
				},
				"version": {
					"type": "string",
					"description": "Version number in format of V{n} for e.g V1, V2"
				},
				"sentAtUtc": {
					"type": "string",
					"description": "When event was sent by the publishers in ISO 8601."
				}
			},
			"required": [
				"occurredAtUtc",
				"typeName",
				"sentAtUtc",
				"version"
			]
		},
		"data": {
			"type": "object",
			"properties": {
				"auctionNumber": {
					"type": "string",
					"description": "The JDE Sale number of the auction."
				},
				"registrationId": {
					"type": "string",
					"description": "The registrationId for the auction registration."
				},
				"paddleNumber": {
					"type": "string",
					"description": "The unique paddle number for the auction."
				},
				"clientNumber": {
					"type": "string",
					"description": "COS number of the client for which registration has been made."
				},
				"submittedByClientNumber": {
					"type": "string",
					"description": "COS number of the logged-in client from which registration has been made."
				},
				"accountNumber": {
					"type": "string",
					"description": "The account number for which registration has been made."
				},
				"shippingType": {
					"type": "object",
                    "properties" : {
                    "shippingTypeId" : {
                      "type" : "string"
                    },
                    "shippingTypeDescription" : {
                      "type" : "string"
                    } 
                  },
					"description": "The shipping type which can be one of: 1 - CustomerCollection, 2- Standard, 3- WarehouseTransfer, 4- BondedWarehouseTransfer, 5- BondedShipping, 6- ArrangeBondedShipper"
				},
				"billingAddressNumber": {
					"type": "number",
					"description": "The billing / invoice address number selected for the registration."
				},
				"shippingAddressNumber": {
					"type": "number",
					"description": "The shipping address number selected for the registration."
				},
				"collect": {
					"type": "bool",
					"description": "True if shipping type is customer collection, warehouse transfer or arranged bonded shipper"
				},
				"inBond": {
					"type": "bool",
					"description": "The purchase option is in bond or not e.g true or false"
				},
				"registrationCreatedTimeUtc": {
					"type": "string",
					"description": "Date and time registration was created e.g. 2022-02-10T14:30:00Z. (ISO8601 format in Zulu/UTC time)"
				},
				"registrationStatus": {
					"type": "string",
					"description": "The registration status e.g Active, Cancelled, Rejected, Denied, etc."
				},
				"collectionSiteAddressNumber": {
					"type": "number",
					"description": "Site address number for shipping types customer collection, warehouse transfer. This is not same as standard shipping, will be null if it's standard shipping."
				},
				"isWineAuction": {
					"type": "bool",
					"description": "Is wine auction e.g true or false."
				},
				"saleRoomCode": {
					"type": "string",
					"description": "The sale room code of the auction e.g NYC, CKS, PAR etc."
				},
				"clientActingAsAgent": {
					"type": "bool",
					"description": "Check if the user must verify if they are acting as an Agent before registering. e.g true or false."
				},
				"ClientActingAsAgentAdditionalInfo": {
					"type": "string",
					"description": "Check if the user must verify if they are acting as an Agent before registering. e.g true or false."
				}
			}
		}
	}
}
Edit this pageLast updated on 2026/1/30