Skip to content
GetmeDocs
Sign inCreate account

Getting started

  • Getme developer documentation

API Reference

  • Introduction
  • Authentication
  • Errors
  • Idempotent requests
  • Metadata
  • Pagination
  • Request IDs
  • Versioning
  • Webhooks
  • Event Catalog
  • SDKs and CLI

Core Resources

  • Auth
  • Events

Site Resources

  • Forms
  • Sites

Commerce Resources

  • Brands
  • Categories
  • Products
  • Services

Crm Resources

  • Customers

Other Resources

  • Media

Dev Tools

  • CLIBeta
  • Website source with the CLIBeta
  • Webhooks with the CLIBeta
  • SDKsBeta
  • Node SDKBeta
  • Python SDKBeta

Guides

  • Guides
  • Quickstart
  • Website source workflow
  • Webhook handler

Changelog

  • Changelog
  • June 10, 2026 - Developer platform docs beta
  • July 15, 2026 - Install token lifecycle safety
  • July 15, 2026 - Source-first site development
  • July 15, 2026 - Site source navigation warnings
Loading documentation...
HomeAPI referenceshipping.label_purchased

shipping.label_purchased

A shipping label was successfully purchased for an order and is ready to use. Subscribe to this event to drive fulfillment steps such as notifying the customer, advancing the order's status, or recording the shipment's tracking reference. The event's `data.object` contains the public shipping resource; see this event's payload schema and example for the exact fields.

stablev1shippingscope: shipping:read

Payload

Webhook deliveries use the common event envelope. The event-specific object is available at data.object.

events/public/payloads/shipping.label_purchased.v1.schema.jsonevents/public/examples/shipping.label_purchased.v1.json

data.object fields

FieldTypeRequiredDescription
idstring | nulloptional
objectstring | nulloptional
metadataobject | nulloptional

dynamic data.object fields

Field
Type
Required
Description
(_id|^id)$string | nulloptional
.*_at$string | nulloptionalformat: date-time

Additional public-safe fields may be present. Internal identifiers and secrets are not part of the public payload contract.

Example

Event body
{
  "api_version": "2026-06-09",
  "created": "2026-06-09T12:00:00Z",
  "data": {
    "object": {
      "event": "shipping.label_purchased",
      "id": "ship_example",
      "metadata": {
        "example": true
      },
      "object": "shipping"
    }
  },
  "environment": "test",
  "id": "wevt_Abcdef1234567890Ghijk",
  "livemode": false,
  "object": "event",
  "type": "shipping.label_purchased"
}
data.object
{
  "event": "shipping.label_purchased",
  "id": "ship_example",
  "metadata": {
    "example": true
  },
  "object": "shipping"
}

On this page

  • Payload
  • Example