Skip to content

Commit 7b3776d

Browse files
pm-komal-kumariKomal Kumari
and
Komal Kumari
authored
PubMatic RTD Documentation and link added (#5860)
* Initial commit : add pubmatic rtd documentation * Remove lint errors * Remove lint error * Update the pubmaticRTD documentation --------- Co-authored-by: Komal Kumari <[email protected]>
1 parent 4665848 commit 7b3776d

File tree

1 file changed

+81
-0
lines changed

1 file changed

+81
-0
lines changed
+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
---
2+
layout: page_v2
3+
page_type: module
4+
title: PubMatic RTD Provider
5+
display_name: PubMatic RTD Module
6+
description: RTD module for Prebid provided by PubMatic to set dynamic floors
7+
module_type: rtd
8+
module_code: pubmaticRtdProvider
9+
enable_download: true
10+
vendor_specific: true
11+
sidebarType: 1
12+
---
13+
14+
# PubMatic RTD Module
15+
{:.no_toc}
16+
17+
* TOC
18+
{:toc}
19+
20+
## Overview
21+
22+
The PubMatic RTD module fetches pricing floor data and updates the Price Floors Module based on user's context in real-time as per Price Floors Modules Floor Data Provider Interface guidelines [Dynamic Floor Data Provider](https://docs.prebid.org/dev-docs/modules/floors.html#floor-data-provider-interface).
23+
24+
## Integration
25+
26+
Step 1: Contact PubMatic to get a publisher ID and create your first profile.
27+
28+
Step 2: Integrate the PubMatic Analytics Adapter (see Prebid Analytics modules) as well as the Price Floors module.
29+
30+
Step 3: Prepare the base Prebid file.
31+
32+
For example:
33+
34+
To compile the Price Floors, PubMatic RTD module and PubMatic Analytics Adapter into your Prebid build:
35+
36+
```shell
37+
gulp build --modules=priceFloors,rtdModule,pubmaticRtdProvider,pubmaticAnalyticsAdapter
38+
```
39+
40+
{: .alert.alert-info :}
41+
Note: The PubMatic RTD module is dependent on the global real-time data module : `rtdModule`, price floor module : `priceFloors` and PubMatic Analytics Adapter : `pubmaticAnalyticsAdapter`.
42+
43+
Step 4: Set configuration and enable PubMatic RTD Module using pbjs.setConfig.
44+
45+
## Configuration
46+
47+
This module is configured as part of the `realTimeData.dataProviders`. We recommend setting `auctionDelay` to at least 250 ms and make sure `waitForIt` is set to `true` for the `pubmatic` RTD provider.
48+
49+
```js
50+
const AUCTION_DELAY = 250;
51+
pbjs.setConfig({
52+
// rest of the config
53+
...,
54+
realTimeData: {
55+
auctionDelay: AUCTION_DELAY,
56+
dataProviders: [
57+
{
58+
name: "pubmatic",
59+
waitForIt: true,
60+
params: {
61+
publisherId: `<publisher_id>`, // please contact PubMatic to get a publisherId for yourself
62+
profileId: `<profile_id>`, // please contact PubMatic to get a profileId for yourself
63+
},
64+
},
65+
],
66+
},
67+
// rest of the config
68+
...,
69+
});
70+
```
71+
72+
## Parameters
73+
74+
{: .table .table-bordered .table-striped }
75+
| Name | Type | Description | Default |
76+
| :----------------- | :------ | :------------------------------------------------------------- | :------------------------- |
77+
| name | String | Name of the real-time data module | Always `pubmatic` |
78+
| waitForIt | Boolean | Should be `true` if an `auctionDelay` is defined (mandatory) | `false` |
79+
| params | Object | | |
80+
| params.publisherId | String | Publisher ID | |
81+
| params.profileId | String | Profile ID | |

0 commit comments

Comments
 (0)