OBJECT

TrackingPixel

A tracking pixel is used to measure impressions or demographics.

link GraphQL Schema definition

1type TrackingPixel {
2
3# Where this pixel came from.
4origin: String
5
6# What service will be using the pixel.
7service: String!
8
9# How long a client needs to view the content before firing the pixel.
10timeOffsetSeconds: Int
11
12# The type of tracker.
13type: TrackingPixelType
14
15# The URL that is requested when the pixel is fired.
16url: String!
17
18}