Ecomplus - Checkout
Eventos da família checkout.* na integração Ecomplus.
Eventos Disponíveis
checkout.abandoned
Estrutura do Payload
{ "customer": { "id": "CUST-123", "name": "João Silva", "document": "12345678900", "phone_numbers": [ { "formatted_phone": "+5511999999999", "type": null, "raw_number": "5511999999999", "area_code": null, "international_dialing_code": null } ], "address": { "street": "Rua Principal", "number": "123", "complement": "Apto 45", "neighborhood": "Centro", "city": "São Paulo", "state": "SP", "country": "BR", "postal_code": "01000-000" } }, "checkout": { "id": "CART-123", "url": "https://loja.ecomplus.com/checkout/abc123" }, "lead_tracking": { "src": null, "sck": null, "utm_source": "google", "utm_campaign": "campanha_verao", "utm_medium": "cpc", "utm_content": "banner_principal", "utm_term": "produto_barato", "utm_id": null, "meta_fbp": null, "google_ga_id": null, "google_gclid": null, "google_gclsrc": null, "google_dclid": null, "google_gbraid": null, "google_wbraid": null, "tiktok_ttlid": null, "ip": null }}Componentes do Payload
Customer
| Campo | Tipo | Descrição |
|---|---|---|
id | string | null | ID do cliente |
name | string | null | Nome completo do cliente |
email | string | null | E-mail do cliente |
document | string | null | CPF ou CNPJ do cliente |
phone_numbers | Phone[] | null | Coleção de telefones do cliente |
address | [CustomerAddress] | Endereço do cliente |
CustomerAddress
Endereço do cliente.
| Campo | Tipo | Descrição |
|---|---|---|
street | string | null | Nome da rua |
number | string | null | Número |
complement | string | null | Complemento |
neighborhood | string | null | Bairro |
city | string | null | Cidade |
state | string | null | Estado (sigla) |
country | string | Código ISO (sempre BR) |
postal_code | string | null | CEP |
Phone
Telefone do cliente.
| Campo | Tipo | Descrição |
|---|---|---|
formatted_phone | string | null | Telefone formatado |
type | null | Sempre null |
raw_number | string | null | Número bruto |
area_code | null | Sempre null |
international_dialing_code | null | Sempre null |
Checkout
| Campo | Tipo | Descrição |
|---|---|---|
id | string | null | ID do checkout/carrinho |
url | string | null | URL do checkout |
LeadTracking
| Campo | Tipo | Descrição |
|---|---|---|
src | null | Sempre null |
sck | null | Sempre null |
utm_source | string | null | Fonte da campanha |
utm_campaign | string | null | Nome da campanha |
utm_medium | string | null | Meio da campanha |
utm_content | string | null | Conteúdo da campanha |
utm_term | string | null | Termo da campanha |
utm_id | null | Sempre null |
meta_fbp | null | Sempre null |
google_ga_id | null | Sempre null |
google_gclid | null | Sempre null |
google_gclsrc | null | Sempre null |
google_dclid | null | Sempre null |
google_gbraid | null | Sempre null |
google_wbraid | null | Sempre null |
tiktok_ttlid | null | Sempre null |
ip | null | Sempre null |