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
Field | Type | Required | Description |
---|---|---|---|
event_type | String | true | O 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_family | String | true | O event_family Ć© definido para fins de processamento.Atualmente, Ć© aceito apenas "CDP" como opĆ§Ć£o vĆ”lida. |
payload | Object | true | O 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" },
/* ... */
]
}