Artisan IMG > Criteo (criteo) (1ff2bdb3d44bdb3c31eb98bf156fe0e1)
Artisan IMG > Criteo (criteo) (1ff2bdb3d44bdb3c31eb98bf156fe0e1)

Criteo
6.0

Criteo is a global technology company that enables brands and retailers to connect more shoppers to the things they need and love.

Overview
Copy

Criteo is a personalized retargeting company that works with Internet retailers to serve personalised online display advertisements to consumers.

Authentication
Copy

When using the Criteo connector, the first thing you will need to do is go to your Tray.io account page, and select the relevant workflow. Once in the workflow dashboard itself, search and drag the Criteo connector from the connectors panel (on the left hand side) onto your workflow.

With the new Criteo connector step highlighted, in the properties panel on the right, click on 'New Authentication' which is located under the 'Settings' heading.

This will result in a Tray.io authentication pop-up window, that should look like this:

As you can see, besides naming your authentication appropriately, you will need your 'Client ID' and 'Client Secret'. These are the same credentials you use to log on to the Criteo Management Center platform.

Please see Getting started with Criteo's API for more details.

When you click 'Add authentication', it is normal for you to see a window open and close, if you are already logged into your Criteo account. If this is not the case, you will be redirected to the Criteo login before continuing. This is the connector authenticating with Criteo.

After ensuring that the authentication you have just created is selected, you can begin using the Criteo connector.

Available Operations
Copy

The examples below show one or two of the available connector operations in use.

Please see the Full Operations Reference at the end of this page for details on all available operations for this connector.

Using the Raw HTTP Request ('Universal Operation')
Copy

As of version 1.1, it is now possible to effectively create your own operations.

This is a very powerful feature which you can put to use when there is an endpoint in Criteo which is not used by any of our operations.

To use this you will first of all need to research the endpoint in the Criteo Marketing API documentation v1.0, to find the exact format that Criteo will be expecting the endpoint to be passed in.

Note that you will only need to add the suffix to the endpoint, as the base URL will be automatically set (the base URL is picked up from the value you entered when you created your authentication).

The base url is in the format of https://api.criteo.com/marketing/.

IMPORTANT!: The Criteo docs do not include v1 as part of their base base URL, howeverthis MUST be included when making your own Raw HTTP Request. Please make sure to include thiswithin your jsonpaths at all times.

For example, say that the 'List Audiences' operation did not exist in our Criteo connector, and you wanted to use this endpoint, you would use the Criteo API docs to find that the 'List Audiences' endpoint is a GET request:

You will note from the API documentation that this endpoint requires the "advertiserId" parameter.

In this case, if you do not already know the Advertiser ID of the Advertiser that you wish to query, use the 'List Advertisers' operation to list the Advertisers in your portfolio.

Once you know what your endpoint (audiences) and query parameter (advertiser ID) is, you can list your available audiences with the following settings:

Endpoint: /v1/audiences Remember to include v1 within the URL of whatever endpoint you intend to use, as specified earlier!

Query Parameter: Key: advertiserId

Query Parameter: Value: 45670

Final outcome: https://api.criteo.com/marketing/v1/audiences?advertiserId=45678

As a result, this will return all Audience objects with the matching advertiserId.

Example usage
Copy

TRAY POTENTIAL: Tray.io is extremely flexible. By design there is no fixed way of working with it - you can pull whatever data you need from other services and work with it using our core and helper connectors. This demo which follows shows only one possible way of working with Tray.io and the Criteo connector. Once you've finished working through this example please see our Introduction to working with data and jsonpaths page and Data Guide for more details.

Below is an example of a way in which you could potentially use the Criteo connector, to 'List advertisers', and retrieve a listing of the Advertiser ID(s) belonging to your portfolio, one of which can be passed by jsonpath into 'List audiences', by using the connector-snake.

The steps will be as follows:

  1. Create a new workflow with the Manual Trigger and add a Criteo step in order to list the advertisers available.

  2. Add another Criteo step this time to list the audiences of said advertisers.

The final outcome should look like this:

1 - Setup trigger & List Advertisers
Copy

Once you have clicked 'Create new workflow' on your main Tray.io dashboard (and named said new workflow).

Select the Manual trigger from the trigger options available:

Once you have been redirected to the Tray.io workflow dashboard, from the connectors panel on the left, add a Criteo connector to your second step. Set the operation to 'List advertisers'.

Feel free to rename your Step Titles as you go along to make things clearer for yourself and other users.

If you run your workflow now, and look in the Debug view, you will see within the Output section that a list of advertisers has been returned.

For now, go back to the Build view.

2. List Audiences
Copy

Add another Criteo connector and drag it into the workflow. Set the operation to 'List audiences'.

You will notice that the 'List audiences' operation requires an Advertiser ID.

We know that the previous connector step (aka 'List Advertisers' connector) returned a list of advertisers. We can now use the connector-snake to generate a jsonpath, to one of those advertiser ID's for our next Criteo connector step: 'List Audiences'.

JSONPATHS: For more information on what jsonpaths are and how to use jsonpaths with Tray.io, please see our pages on Basic data concepts and Mapping data between steps

CONNECTOR-SNAKE: The simplest and easiest way to generate your jsonpaths is to use our feature called the Connector-snake. Please see the main page for more details.

Make sure to click on advertiserId:

You output should look similar to the below:

Note that in our example there was only one entry in the list of advertisers returned, by the List Advertisers step. This is why the result advertisers[0].advertiserId, refers to the advertiser ID of the first (and only) advertiser in the list. Had been 5 advertisers in the list, and we wanted to get the advertiser ID of the third advertiser, the jsonpath would read: advertisers[2].advertiserId.

BEST PRACTICES: Whenever you do decide to create your own workflow, be sure to check out some of our key articles such as: