Hanzo
OpenapiCommerce

Replace a subscriber outright

A subscriber is a mailing-list member — name, email, the form id that captured them, unsubscribed state and date, client details, tags and metadata.

PUT /v1/commerce/subscriber/{subscriberid}

Addresshttps://api.hanzo.ai/v1/commerce/subscriber/{subscriberid}
MethodPUT
Operationput_commerce_subscriber_by_subscriberid
AuthAuthorization: Bearer $HANZO_API_KEY

A subscriber is a mailing-list member — name, email, the form id that captured them, unsubscribed state and date, client details, tags and metadata. Writing one FIRES A WEBHOOK: subscriber.created on create and subscriber.updated on replace or patch, emitted BEFORE the write is known to have succeeded and carrying the row as sent, so the payload holds the raw email rather than the normalized one that gets stored. This is a true REPLACEMENT, not a merge: the stored row's key is preserved, but the body is decoded onto a FRESH entity, so every field the body omits is written back as its ZERO value. Patch is the verb for changing part of a row. The id is resolved inside the caller org's own namespace and an absent one is 404 before anything is written; a body that fails to decode is 400. Answers the stored result. Any valid access token reaches it. The token must also carry Admin, or ReadSubscriber and WriteSubscriber together.

Request

1 field.

FieldInTypeRequiredDescription
subscriberidpathstringyes

Response

The document declares no response body for this operation. It answers 200 on success and the platform error shape on failure — see Errors.

Examples

hanzo commerce subscriber set <subscriberid>

Commerce API · All Hanzo APIs · Interactive reference

How is this guide?

On this page