SKU status update

Updated at:

This message indicates when a channel merchant lists or delists a SKU.

Topic

Kafka topic

product

Message type

ordered message

Partition key

productId

Message body

Parameter

Type

Description

Example

event

String

Specifies the message type.

SkuStatusUpdated

body

purchaserId

String

The purchaser ID.

PID22000006

productId

String

The product ID.

660062209131806736

skuId

String

The SKU ID.

660062209131806737

beforeStatus

String

The SKU status before the update, which can be Online (listed)

or Offline (delisted).

Offline

afterStatus

String

The SKU status after the update. Valid values are Online or Offline.

Online

Example

{
    "event": "SkuStatusUpdated",
    "body": {
        "purchaserId": "PID22000006",
        "productId": "660057403063402509",
        "skuId": "660057403063402511",
        "beforeStatus": "Online",
        "afterStatus": "Offline"
    }
}

Revision history

Date

Description

Actions

2023-09-11

Initial release.

Added