이벤트 유형

전자상거래 이벤트의 8가지 유형은 Finteza: 물건 보기 로 보내질 수

다른 모든 이벤트는 Finteza 측의 전자상거래 보고서에 포함되지 않습니다.


View Item #

이 이벤트는 제품이 조회되었음을 나타냅니다. 조회된 물건의 특성은 이벤트에서 지정됩니다:

fz('ecommerce', {
  "event""View Item",
  "items": [
    {
      "id""P12345",
      "name""USB Charger",
      "brand""ChargeIt",
      "category""Accessories",
      "variant""Black",
      "quantity": 2,
      "currency""USD",
      "price": 2.00,
      "list_name""Search Results",
      "list_position": 1
    },
    {
      "id""P67890",
      "name""Flame challenge TShirt",
      "brand""MyBrand",
      "category""Apparel/T-Shirts",
      "variant""Red",
      "quantity": 1,
      "currency""USD",
      "price": 3.00,
      "list_name""Search Results",
      "list_position": 2
    }
  ]
});

그 결과, Finteza에서 설명된 각 항목에 대해 하나씩 두 개의 "View Item" 이벤트가 생성됩니다.

Add To Cart / Remove From Cart #

이러한 이벤트는 제품이 카트에서 추가되거나 제거될 때 사용됩니다. 제품 설명과 더불어 이벤트에는 카트 ID가 포함되어야 합니다. cart_id parameter (ID가 귀하 웹사이트에서 생성되어야 합니다).

fz('ecommerce', {
  "event""Add To Cart",
  "cart_id""C89367",
  "items": [
    {
      "id""P12345",
      "name""USB Charger",
      "brand""ChargeIt",
      "category""Accessories",
      "variant""Black",
      "quantity": 2,
      "currency""USD",
      "price": 2.00,
      "list_name""Search Results",
      "list_position": 1
    },
    {
      "id""P67890",
      "name""Finteza TShirt",
      "brand""Finteza",
      "category""Apparel/T-Shirts",
      "variant""Red",
      "quantity": 1,
      "currency""USD",
      "price": 3.00,
      "list_name""Search Results",
      "list_position": 2
    }
  ]
});

그 결과, Finteza에서 설명된 각 항목에 대해 하나씩 두 개의 "Add To Cart" 이벤트가 생성됩니다. 지정한 카트 ID가 각 이벤트에 추가됩니다.

카트 이벤트에서 제거의 list_namelist_position 매개 변수를 넘기지 마십시오. 카트에 항목을 추가한 목록을 설명하므로 제거 이벤트에 대한 의미가 없습니다.

View Cart #

해당 이벤트는 카트 보기와 관련이 있습니다. 이 이벤트에는 세금, 할인, 순이익 등 추가 제공자는 물론 카트 비용에 대한 정보가 포함되어 있습니다. 개별 제품에 대해 추가 매개 변수를 지정할 수도 있습니다.

fz('ecommerce', {
  "event""View Cart",
  "cart_id""C89367",
  "cart_items": 2,
  "currency""USD",
  "value": 7.07,
  "tax_value": 0.7,
  "tax_name""Tax",
  "tax_type""Tax type",
  "discount_value": 1,
  "discount_name""Black Friday",
  "discount type""B112029",
  "discount type""B112029"
  "items": [
    {
      "id""P12345",
      "name""USB Charger",
      "brand""ChargeIt",
      "category""Accessories",
      "variant""Black",
      "quantity": 2,
      "currency""USD"
      "price": 2.00,
      "value": 4.24
    },
    {
      "id""P67890",
      "name""Finteza TShirt",
      "brand""Finteza",
      "category""Apparel/T-Shirts",
      "variant""Red",
      "quantity": 1,
      "currency""USD"
      "price": 3.00,
      "value": 2.83
    }
  ]
});

 

다음 세 가지 이벤트가 Finteza에 생성됩니다:

  • 각 제품마다 "View Cart" 이벤트. 해당 이벤트는 다음을 포함합니다: cart_id.
  • 카트에 대한 "View Cart" 이벤트. 만약 cart_id 이 특정되지 않는다면 이벤트가 생성되지 않습니다.

Checkout Begin / Checkout Progress #

이것은 사용자가 이미 카트에 물건을 추가하고 결제를 진행하는 구매 시작 및 진행 이벤트입니다.

"View Cart" 단계에 사용된 매개 변수 외에도 구매 단계에 대한 정보를 여기에 전달할 수 있습니다. 할인 및 사용된 쿠폰에 대한 정보도 여기에서 수정할 수 있습니다.

fz('ecommerce', {
  "event""Checkout Begin",
  "cart_id""C89367",
  "cart_items": 2,
  "currency""USD",
  "value": 7.07,
  "tax_value": 0.7,
  "tax_name""Tax",
  "tax_type""Tax type",
  "discount_value": 1,
  "discount_name""Black Friday",
  "discount type""B112029",
  "shipping_value": 0.3,
  "shipping_name""Shipping",
  "shipping_type""Shipping Type",
  "checkout_step": 1,
  "checkout_option" : "Shipping"
  "items": [
    {
      "id""P12345",
      "name""USB Chargers",
      "brand""ChargeIt",
      "category""Accessories",
      "variant""Black",
      "quantity": 2,
      "currency""USD"
      "price": 2.00,
      "value": 4.24,
      "tax_value": 0.4,
      "tax_name""Tax",
      "tax_type""Tax type",
      "shipping_value": 0.2,
      "shipping_name""Shipping",
      "shipping_type""Standard Post"
    },
    {
      "id""P67890",
      "name""Finteza TShirt",
      "brand""Finteza",
      "category""Apparel/T-Shirts",
      "variant""Red",
      "quantity": 1,
      "currency""USD"
      "price": 3.00,
      "value": 2.83,
      "tax_value": 0.3,
      "tax_name""Tax",
      "tax_type""Tax type",
      "discount_value": 0.6,
      "discount_name""Black Friday",
      "discount type""B112029"
    }
  ]
});

다음 세 가지 이벤트가 Finteza에 생성됩니다:

  • 각 물건에 대한 "Checkout Begin" 이벤트. 해당 이벤트는 다음을 포함합니다: cart_id, checkout_stepcheckout_option 이는 카트 설명에서 옵니다.
  • 카트에 대한 "Checkout Begin" 이벤트. 만약 cart_id 이 특정되지 않는다면 이벤트가 생성되지 않습니다.

Checkout Success #

이 이벤트는 성공적인 구매 완료를 의미합니다. 이전 이벤트 정보 외에도 결제 ID (transaction_id) 및 가게 데이터를 여기에 지정할 수 있습니다. (affiliate). 다음을 추가로 지정할 수 있습니다:

  • 구매자 이름 (buyer) 및 판매자 이름 (seller). 상위 판매자 및 구매자 보고서는 많은 타사 판매자가 귀하의 사이트에서 운영하는 경우에 유용합니다.
  • 거래의 결제 시스템 수수료입니다 (transaction_fee).
  • 순매출소득, 순수수료, 세금 및 수수료입니다profit).

fz('ecommerce', {
  "event""Checkout Success",
  "transaction_id""CH38027",
  "affiliation""Online store",
  "buyer""john_smith",
  "seller""Europe Shop",
  "cart_id""C89367",
  "cart_items": 2,
  "currency""USD",
  "value": 7.07,
  "profit": 2,
  "transaction_fee": 0.07,
  "tax_value": 0.7,
  "tax_name""Tax",
  "tax_type""VAT",
  "discount_value": 1,
  "discount_name""Black Friday",
  "discount type""B112029",
  "shipping_value": 0.3,
  "shipping_name""Shipping",
  "shipping_type""Standard Post",
  "checkout_step": 1,
  "checkout_option" : "Shipping",
  "items": [
    {
      "id""P12345",
      "name""USB Charger",
      "brand""ChargeIt",
      "category""Accessories",
      "variant""Black",
      "quantity": 2,
      "currency""USD"
      "price": 2.00,
      "value": 4.24,
      "profit": 1.6,
      "transaction_fee": 0.04,
      "tax_value": 0.4,
      "tax_name""Tax",
      "tax_type""VAT",
      "discount_value": 0.4,
      "discount_name""Black Friday",
      "discount type""B112029",
      "shipping_value": 0.2,
      "shipping_name""Shipping",
      "shipping_type""Standard Post",
    },
    {
      "id""P67890",
      "name""Finteza TShirt",
      "brand""Finteza",
      "category""T-Shirts",
      "variant""Red",
      "quantity": 1,
      "currency""USD"
      "price": 3.00,
      "value": 2.83,
      "profit": 0.4,
      "transaction_fee": 0.03,
      "tax_value": 0.3,
      "tax_name""Tax",
      "tax_type""VAT",
      "discount_value": 0.6,
      "discount_name""Black Friday",
      "discount type""B112029"
      "shipping_value": 0.1,
      "shipping_name""Shipping",
      "shipping_type""Standard Post",
    }
  ]
});

다음 세 가지 이벤트가 Finteza에 생성됩니다:

  • 각 물건에 대한 "Checkout Success" 이벤트. 해당 이벤트는 다음을 포함합니다: transaction_id, affiliation, cart_id, checkout_stepcheckout_option 이는 카트 설명에서 옵니다.
  • 카트에 대한 "Checkout Success" 이벤트. 만약 cart_id 이 특정되지 않는다면 이벤트가 생성되지 않습니다.

Checkout Failed #

이 이벤트는 주문에 대한 결제 시도가 실패했음을 나타냅니다. 이전 이벤트와 달리 이 이벤트는 다음을 포함하지 않습니다: transaction_id 허나 다음에 있는 오류 설명을 포함합니다: detail 매개 변수.

fz('ecommerce', {
  "event""Checkout Failed",
  "detail""WebMoney Payment Error",
  "cart_id""C89367",
  "cart_items": 2,
  "currency""USD",
  "value": 7.07,
  "checkout_step": 1,
  "checkout_option" : "Shipping",
  "items": [
    {
      "id""P12345",
      "name""USB Charger",
      "brand""ChargeIt",
      "category""Accessories",
      "variant""Black",
      "quantity": 2,
      "currency""USD"
      "price": 2.00,
      "value": 4.24,
    },
    {
      "id""P67890",
      "name""Finteza TShirt",
      "brand""Finteza",
      "category""Apparel/T-Shirts",
      "variant""Red",
      "quantity": 1,
      "currency""USD"
      "price": 3.00,
      "value": 2.83,
    }
  ]
});

다음 세 가지 이벤트가 Finteza에 생성됩니다:

  • 각 물건에 대한 "Checkout Failed" 이벤트. 해당 이벤트는 다음을 포함합니다: 상세 내역, cart_id, checkout_stepcheckout_option이는 카트 설명에서 옵니다.
  • 카트에 대한 "Checkout Failed" 이벤트. 만약 cart_id 이 특정되지 않는다면 이벤트가 생성되지 않습니다.

Refund #

이 이벤트는 제품 환불을 반영합니다. 이 이벤트는 다음 지불 식별자를 포함합니다: transaction_id 이는 원래 결제와 연결되어 있으며, 환불 이유 설명은 다음에 포함되어 있습니다: detail 매개 변수.

fz('ecommerce', {
  "event""Refund",
  "transaction_id""P7788112313",
  "detail""Broken",
  "cart_id""C89367",
  "cart_items": 2,
  "currency""USD",
  "value": 7.07,
  "items": [
    {
      "id""P12345",
      "name""USB Charger",
      "brand""ChargeIt",
      "category""Accessories",
      "variant""Black",
      "quantity": 2,
      "currency""USD"
      "price": 2.00,
      "value": 4.24,
    },
    {
      "id""P67890",
      "name""Finteza TShirt",
      "brand""Finteza",
      "category""Apparel/T-Shirts",
      "variant""Red",
      "quantity": 1,
      "currency""USD"
      "price": 3.00,
      "value": 2.83,
    }
  ]
});

다음 세 가지 이벤트가 Finteza에 생성됩니다:

  • 각 물건에 대한 "Refund" 이벤트. 해당 이벤트는 다음을 포함합니다: transaction_id, 상세 내역cart_id 이는 카트 설명에서 옵니다.
  • 카트에 대한 "Refund" 이벤트. 만약 cart_id 이 특정되지 않는다면 이벤트가 생성되지 않습니다.