Skip to content

Commit

Permalink
Added publisherId param to bid params in insticator adapter doc (preb…
Browse files Browse the repository at this point in the history
…id#5406)

* Added publisherId param to bid params in insticator adapter doc

* chaning userIds from none to all

---------

Co-authored-by: shashidharm <shashidhar397@gmai.com>
  • Loading branch information
2 people authored and linzhucheng committed Jul 5, 2024
1 parent 3d1bfab commit 15f8f07
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dev-docs/bidders/insticator.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ multiformat_supported: will-bid-on-any
pbjs: true
gvl_id: 910
sidebarType: 1
userIds: all
---

### Bid Params
Expand All @@ -24,6 +25,7 @@ sidebarType: 1
| Name | Scope | Description | Example | Type |
|-----------------------------|----------|-----------------------------------------------------------------------------------------|------------------------------------|----------|
| `adUnitId` | Required | The ad unit ID provided by Insticator | `'test'` | `string` |
| `publisherId` | optional | The publisher ID provided by Insticator | `'test'` | `string` |
| `yob` | optional | Year of Birth | `'1982'` | `string` |
| `gender` | optional | Gender | `'M'` | `string` |
| `instl` | optional | 1 = the ad is interstitial or full screen, 0 = not interstitial. | `1` | `number` |
Expand Down Expand Up @@ -58,7 +60,8 @@ var adUnitsBannerOnly = [
{
bidder: 'insticator',
params: {
adUnitId: 'example_adunit_id',
adUnitId: 'example_adunit_id',
publisherId: 'example_publisher_id',
},
},
],
Expand Down Expand Up @@ -170,7 +173,8 @@ var adUnits = [
bids: [{
bidder: 'insticator',
params: {
adUnitId: 'example_adunit_id'
adUnitId: 'example_adunit_id',
publisherId: 'example_publisher_id',
}
}],
...
Expand Down

0 comments on commit 15f8f07

Please sign in to comment.