Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.46 KB

GetExtendedContactDetails.md

File metadata and controls

36 lines (30 loc) · 1.46 KB

Brevo::GetExtendedContactDetails

Properties

Name Type Description Notes
email String Email address of the contact for which you requested the details [optional]
id Integer ID of the contact for which you requested the details
email_blacklisted Boolean Blacklist status for email campaigns (true=blacklisted, false=not blacklisted)
sms_blacklisted Boolean Blacklist status for SMS campaigns (true=blacklisted, false=not blacklisted)
created_at String Creation UTC date-time of the contact (YYYY-MM-DDTHH:mm:ss.SSSZ)
modified_at String Last modification UTC date-time of the contact (YYYY-MM-DDTHH:mm:ss.SSSZ)
list_ids Array<Integer>
list_unsubscribed Array<Integer> [optional]
attributes Object Set of attributes of the contact
statistics GetExtendedContactDetailsAllOfStatistics

Example

require 'brevo'

instance = Brevo::GetExtendedContactDetails.new(
  email: john.smith@example.com,
  id: 32,
  email_blacklisted: false,
  sms_blacklisted: true,
  created_at: 2017-05-12T12:30:00Z,
  modified_at: 2017-05-12T12:30:00Z,
  list_ids: null,
  list_unsubscribed: null,
  attributes: {name&#x3D;Joe, email&#x3D;joe@example.com},
  statistics: null
)