Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.22 KB

ConversationsAgentOnlinePingPostRequest.md

File metadata and controls

24 lines (18 loc) · 1.22 KB

Brevo::ConversationsAgentOnlinePingPostRequest

Properties

Name Type Description Notes
agent_id Object agent ID. It can be found on agent’s page or received <a href=&quot;https://developers.brevo.com/docs/conversations-webhooks\&quot;&gt;from a webhook</a>. Alternatively, you can use `agentEmail` + `agentName` + `receivedFrom` instead (all 3 fields required). [optional]
received_from Object mark your messages to distinguish messages created by you from the others. [optional]
agent_email Object agent email. When sending online pings from a standalone system, it’s hard to maintain a 1-to-1 relationship between the users of both systems. In this case, an agent can be specified by their email address. If there’s no agent with the specified email address in your Brevo organization, a dummy agent will be created automatically. [optional]
agent_name Object agent name [optional]

Example

require 'brevo'

instance = Brevo::ConversationsAgentOnlinePingPostRequest.new(
  agent_id: null,
  received_from: null,
  agent_email: null,
  agent_name: null
)