Batch de Eventos

O endpoint de grupo de eventos permite que o RD Station receba mais de um evento ao mesmo tempo. Isso permite que eventos de pedido fechado e os itens que foram inclusos no pedido sejam enviados por meio de apenas uma chamada para a API.

šŸ“˜

O tamanho do body das requisiƧƵes nessa rota possui um limite de 0,2Mb.


Request body parameters
FieldTypeRequiredDescription
event_typeStringtrueO event_type diferencia o tipo do evento. As opƧƵes aceitas sĆ£o: CONVERSION, OPPORTUNITY, SALE, OPPORTUNITY_LOST, ORDER_PLACED, ORDER_PLACED_ITEM, CART_ABANDONED, CART_ABANDONED_ITEM, CHAT_STARTED, CHAT_FINISHED, CALL_FINISHED, MEDIA_PLAYBACK_STARTED e MEDIA_PLAYBACK_STOPPED.
event_familyStringtrueO event_family Ć© definido para fins de processamento.Atualmente, Ć© aceito apenas "CDP" como opĆ§Ć£o vĆ”lida.
payloadObjecttrueO payload contendo os atributos do event_type relacionado, conforme definido acima.

Request body example
[
  {
    "event_type" : "#type",
    "event_family" : "CDP",
    "payload": {
      /* ... */
    }
  },
  {
    "event_type" : "#type",
    "event_family" : "CDP",
    "payload": {
      /* ... */
    }
  },
  {
    "event_type" : "#type",
    "event_family" : "CDP",
    "payload":
    {
      /* ... */
    }
  },
  /* ... */
]

Request response example
Success | Code: 200
{
    "event_batch_uuid": "UUID of the batch",
    "events":[
	     { "event_uuid":"Event UUID" },
	     { "event_uuid":"Event UUID" },
	     { "event_uuid":"Event UUID" },
       /* ... */
     ]
}
The event uuid array is organized according to the the order of the array sent in the request payload.