GET
/
api
/
v1
/
notifications
/
sample
/
{event_code}
Preview a sample webhook payload
curl --request GET \
  --url https://api.byblend.com/api/v1/notifications/sample/{event_code} \
  --header 'Authorization: Bearer <token>'
{
  "event_code": "order.shipped",
  "payload_preview": {
    "carrier": "USPS",
    "created_at": "2025-07-31T17:13:13.520283",
    "estimated_delivery_date": "2025-07-31T17:13:13.520651",
    "service_level": "Ground Advantage",
    "status": "received",
    "tracking_number": "9200190347375200504724",
    "tracking_url": "https://tools.usps.com/go/TrackConfirmAction_input?origTrackNum=9200190347375200504724",
    "updated_at": "2025-07-31T17:13:13.520304",
    "url": "http://localhost:3000/shipments/46aaf265-60bb-4c34-bc08-be20e1628412"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

event_code
string
required

Event code for the sample payload

Example:

"order.shipped"

Response

200 - application/json

Successful response with sample webhook payload

The response is of type object.