Events/Vault
vault.sold

Vault listing sold

A Vault listing was bought. Payload includes the gross sale, platform commission, and the seller payout amount.

When this fires

Fires whenever the underlying state change happens on the platform.

Sample payload

This is the exact envelope shape we POST to your endpoint — outer wrapper plus the per-event data payload. Field values are randomised on each render so you see the general shape, not a fixed example.

json
{
  "id": "dba1bdf4-a844-421d-8723-5fa04e9b3595",
  "event": "vault.sold",
  "created": "2026-06-12T18:11:59.366Z",
  "data": {
    "listingId": "cxqf9zgoym200000000000000",
    "wardrobeItemId": "cq64jnzzg7so0000000000000",
    "buyerProfileId": "cdn9sci8m9vs0000000000000",
    "title": "Beaded Lace Gele",
    "grossKobo": 14929452,
    "platformCommissionKobo": 2239418,
    "platformCommissionBps": 1500,
    "sellerPayoutKobo": 12690034,
    "buyerOrderId": "cc04sdcogvlh0000000000000",
    "soldAt": "2026-06-12T18:11:59.366Z"
  }
}

Use cases

  • Trigger any downstream automation that cares about this state change.
  • Mirror the event into your data warehouse for analytics.
  • Notify a human channel for high-signal events.

Subscribe in the dashboard

To start receiving this event, add it to a webhook's subscription list in Developers → Webhooks. Wildcard subscriptions ( vault.*) work too — see the webhooks guide for the matching rules.