Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

It is possible to send a transaction to the affiliate program using Basket through a server-sided tracking call. The easy.MARKETING system provides a call that needs to be filled with the corresponding data. Since it is server-side tracking, the tracking-relevant ID of the user needs to be sent back from the advertiser's server to the system.

...

It is important to populate the basket array with the data for each ordered position.

Endpoint

https://SUB-DOMAIN/trck/ebasket/

Example tracking call

Conversion call - Serversided

https://DOMAIN*/trck/ebasket/?json=[{"campaign_id":"CAMPAIGN_ID","trigger_id":"TRIGGER_ID","token":"TOKEN","emid":"EMID","amount":"AMOUNT","price":"PRICE","article_number":"ARTICLE_NUMBER","productname":"PRODUKTNAME","category":"CATEGORY","additional":{"VARIABLE":"VALUE","VARIABLE2":"VALUE2"}}]

JSON structure

Code Block
[
  {
    "campaign_id": "CAMPAIGN_ID",
    "token": "TOKEN",
    "trigger_id": "TRIGGER_ID",
    "action_id": "EMID",
    "amount": "AMOUNT",
    "price": "PRICE",
    "article_number": "ARTICLE_NUMBER",
    "productname": "PRODUCT_NAME",
    "category": "CATEGORY",
    "additional": {
      "vouchercode": "WINTER20",
      "zusatzinfo": "additional_1"
    }
  }
]

Variable description

VARIABLE

BESCHREIBUNG

DESCRIPTION

CAMPAIGN_ID*

Stores the campaign ID.

TRIGGER_ID*

Stores the trigger ID.

TOKEN*

Stores the order number / order ID.

EMID*

It is filled with the value of the "emid" parameter, which is passed from easy.affiliate to the landing page through the click link. This value is essential for attribution, as it provides the customer journey information.

AMOUNT*

Replaced with the quantity of times the corresponding product was purchased.

PRICE*

It is filled with the NET price of the individual product. The separator for Euro and cent is dot ('.').

ARTICLE_NUMBER*

It is filled with the respective product ID.

PRODUCTNAME*

It is filled with the product name.

CATEGORY*

Stores the product category.

ADDITIONAL

The "additional" parameter can include another array with additional values relevant to the customer case.

Values marked with * are mandatory.

Coupon implementation

In many shops, users are offered coupons to provide discounts. Often, these coupons are taken into account in the calculation of remunerations.

Discount coupons:

For discount coupons, an additional basket item is added within the JSON parameter. The amount to be deducted is specified as a negative turnover.

Example tracking call with coupon item

https://SUB-DOMAIN*/trck/ebasket/?json=[{"campaign_id":"CAMPAIGN_ID","trigger_id":"TRIGGER_ID","token":"TOKEN","action_id":"EMID","amount":"AMOUNT","price":"PRICE","article_number":"ARTICLE_NUMBER","productname":"PRODUKTNAME","category":"CATEGORY","additional":{"VARIABLE":"VALUE","VARIABLE2":"VALUE2"}},{"campaign_id":"CAMPAIGN_ID","trigger_id":"TRIGGER_ID","token": "TOKEN","emid":"","amount":"AMOUNT","price":"DISCOUNTPRICE","article_number":"VOUCHER_NUMBER","productname":"VOUCHER_NAME","category":"VOUCHER_CATEGORY","additional":{"VARIABLE":"VALUE","VARIABLE2":"VALUE2"}}]

JSON structure of a coupon item

Code Block
[
  {
    "campaign_id": "CAMPAIGN_ID",
    "token": "TOKEN",
    "trigger_id": "TRIGGER_ID",
    "action_id": "EMID",
    "amount": "AMOUNT",
    "price": "DISCOUNTPRICE",
    "article_number": "VOUCHER_NUMBER",
    "productname": "VOUCHER_NAME",
    "category": "VOUCHER_CATEGORY",
    "additional": {
      "VARIABLE": "VALUE",
      "VARIABLE2": "VALUE2"
    }
  }
]

Implementation in PHP

PHP code example that can be integrated on the order confirmation page:

...