Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 982 Bytes

GetAccount.md

File metadata and controls

32 lines (26 loc) · 982 Bytes

Brevo::GetAccount

Properties

Name Type Description Notes
email String Login Email
first_name String First Name
last_name String Last Name
company_name String Name of the company
address GetExtendedClientAllOfAddress
plan Array<GetAccountAllOfPlan> Information about your plans and credits
relay GetAccountAllOfRelay
marketing_automation GetAccountAllOfMarketingAutomation [optional]

Example

require 'brevo'

instance = Brevo::GetAccount.new(
  email: john.smith@example.com,
  first_name: John,
  last_name: Smith,
  company_name: MyCompany,
  address: null,
  plan: null,
  relay: null,
  marketing_automation: null
)