Skip to content

Commit

Permalink
Adding the IAS RTD documentation (#3017)
Browse files Browse the repository at this point in the history
* IAS RTD Module documentation

* update documentation

* Update iasRtdProvider.md

minor grammatical and formatting edits

* Update iasRtdProvider.md

fixing table formatting

Co-authored-by: Jean Stemp <[email protected]>
  • Loading branch information
raguilar-ias and jeanstemp authored Jun 10, 2021
1 parent eb35020 commit b52f073
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions dev-docs/modules/iasRtdProvider.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
layout: page_v2
title: Integral Ad Science(IAS) Real Time Data Module
display_name: Integral Ad Science(IAS) RTD
description: RTD provider for Integral Ad Science(IAS)
page_type: module
module_type: rtd
module_code : iasRtdProvider
enable_download : true
sidebarType : 1
---

# Integral Ad Science(IAS) Real Time Data Module

# Overview

Integral Ad Science(IAS) Real Time Data Module. Please contact [Integral Ad Science(IAS)](https://integralads.com/) for information.

## Integration

1) Compile Integral Ad Science(IAS) RTD Provider into your Prebid build:

```
`gulp build --modules=iasBidAdapter,iasRtdProvider`...
```

2) Use `setConfig` to instruct Prebid.js to initialize the IAS module, as specified below.

## Configuration

This module is configured as part of the `realTimeData.dataProviders` object.

Configuration example for using RTD module with the `ias` provider:

```javascript
pbjs.setConfig({
realTimeData: {
dataProviders: [
{
name: 'ias',
waitForIt: true,
params: {
pubId: '1234',
}
}
]
}
```
Parameters details:
{: .table .table-bordered .table-striped }
| Name | Type | Scope | Description |
| :------------ | :------------ | :------- | :------- |
| pubId | string | required | IAS publisher ID |

0 comments on commit b52f073

Please sign in to comment.