Get Subscriber

Retrieve a specific subscriber from your Lumail account

MethodGET
/api/v1/subscribers/{subscriber}

https://lumail.io/api/v1/subscribers/{subscriber}

Retrieves a specific subscriber by ID or email address with their associated tags and custom fields.

Response

  • Success (200 OK) - Returns the subscriber object with their data.
  • Error (404 Not Found) - Returned if the subscriber does not exist.

Response Fields

FieldTypeDescription
successbooleanIndicates if the operation was successful
subscriberobjectThe subscriber object with all its properties
subscriber.idstringUnique identifier for the subscriber
subscriber.emailstringEmail address of the subscriber
subscriber.namestring or nullName of the subscriber (if provided)
subscriber.phonestring or nullPhone number of the subscriber (if provided)
subscriber.statusstringCurrent status of the subscriber (e.g., "SUBSCRIBED", "UNSUBSCRIBED")
subscriber.tagsarrayArray of tag objects associated with the subscriber
subscriber.tags[].idstringUnique identifier for the tag
subscriber.tags[].namestringName of the tag
subscriber.fieldsobjectCustom field values associated with this subscriber

Request Schema

No request body is required for this endpoint. Use either the subscriber's unique ID or email address in the URL path.

Usage Example

Use this API endpoint to retrieve detailed information about a specific subscriber, which can help you:

  • Display subscriber profile information in your application
  • Check a subscriber's current subscription status
  • View which tags have been assigned to a subscriber
  • Access custom field values for personalization
  • Verify subscriber information before making updates