Customers Segment Update
Triggered when a C-end customer segment is updated.
Requires the customer access scope. Minimum supported version: 202007.
Request headers
The event that triggered this delivery, e.g. orders/create
orders/createBase64-encoded HMAC-SHA256 signature of the request body, generated with your app's Client Secret. Use it to verify the request comes from Shoplazza
The domain of the store that generated the event
example.myshoplaza.comThe API version used to serialize the payload
2025-06Deduplication ID for this delivery. It stays the same across retries of the same event—use it for idempotency
Request body
- Schema
- Example
customer_segment object
idstringCustomer segment ID
namestringSegment name
filterstringSegment filter conditions (embedded JSON string)
statestringSegment status (normal = active, invalid = inactive)
source_namestringData source (admin = admin panel, api = API)
app_namestringName of the app that created the segment
created_atstringTime when the segment was created
updated_atstringTime when the segment was last updated
{
"customer_segment": {
"id": "string",
"name": "string",
"filter": "string",
"state": "string",
"source_name": "string",
"app_name": "string",
"created_at": "string",
"updated_at": "string"
}
}