Newsletter Subscriber Detail
Returns a single newsletter subscriber with its full field set — the data behind the admin Marketing → Communications → Newsletter Subscribers view screen.
TIP
New here? Read the Newsletter Subscribers overview for what a subscriber is and how its fields behave.
Endpoint
| Endpoint | Method |
|---|---|
/api/admin/marketing/subscribers/{id} | GET |
Details
- Requires an admin Bearer token in the
Authorizationheader. customerIdandcustomerNameresolve when the subscriber's email matches a registered customer; otherwise they arenull.- An unknown id returns a
404.
Response fields
| Field | Type | Notes |
|---|---|---|
id | int | Numeric id |
email | string | Subscriber email address |
channel | object | The channel the subscription belongs to — { id, code, name }. Detail-only (null on list rows) |
customerId | int | Linked customer id, or null |
customerName | string | Linked customer name, or null |
isSubscribed | bool | true subscribed / false unsubscribed |
createdAt | string | Creation timestamp |
updatedAt | string | Last-update timestamp |

