Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 623 Bytes

SendWhatsappMessageText.md

File metadata and controls

22 lines (16 loc) · 623 Bytes

Brevo::SendWhatsappMessageText

Properties

Name Type Description Notes
sender_number String WhatsApp Number with country code. Example, 85264318721
text String Text to be sent as message body (will be overridden if templateId is passed in the same request)
contact_numbers Array<String> List of phone numbers of the contacts

Example

require 'brevo'

instance = Brevo::SendWhatsappMessageText.new(
  sender_number: 919876543210,
  text: Hi! There i am a message,
  contact_numbers: null
)