Get Subscriber
Fetch one contact by id or email.
MethodGET
/api/v2/subscribers/:subscriberReturns one contact. :subscriber is an id or email. Permission: subscribers.
Path Parameters
| Name | Type | Description |
|---|---|---|
subscriber | string | Required. Subscriber id or email. |
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Subscriber id. |
email | string | Email address. |
name | string or null | Display name. |
phone | string or null | Phone number. |
status | string | Current status. |
createdAt | string | ISO 8601 created timestamp. |
updatedAt | string | ISO 8601 updated timestamp. |
tags | { id, name }[] | Attached tags. |
fields | { name, value }[] | Custom fields. |
Errors
| Status | name | When |
|---|---|---|
| 401 | missing_api_key | Missing or invalid bearer token |
| 403 | missing_permission | Token lacks the subscribers permission |
| 404 | not_found | Unknown id or email |