Skip to content

Commit

Permalink
updated iqm md file (#3069)
Browse files Browse the repository at this point in the history
* updated iqm md file

* updated iqm md file with title

* Update iqm.md

added table formatting

* added geo as required

Co-authored-by: Jean Stemp <38964447+jeanstemp@users.noreply.github.com>
  • Loading branch information
Params10 and jeanstemp authored Jul 22, 2021
1 parent f3823a9 commit 4892733
Showing 1 changed file with 72 additions and 8 deletions.
80 changes: 72 additions & 8 deletions dev-docs/bidders/iqm.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,78 @@ pbjs: true
biddercode: iqm
---


### Bid Params
# Parameters

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example |
| :------------ | :------- | :------------------------ | :------------------- |
| `publisherId` | required | The Publisher ID from iQM | "df5fd732-c5f3-11e7-abc4-cec278b6b50a" |
| `geo.country` | required | The publisher country| "USA" |
| `placementId` | required | The Placement ID from iQM | 23451 |
| `bidfloor` | optional | Bid Floor | 0.50 |

# Description

Module that connects to iQM demand sources

# Test Parameters
```
var adUnits = [{
code: 'div-gpt-ad-1460505748561-0',
mediaTypes: {
banner: {
sizes: [[300,250]]
}
},
bids: [{
bidder: 'iqm',
params: {
geo:{
country:'USA'
},
publisherId: 'df5fd732-c5f3-11e7-abc4-cec278b6b50a',
placementId: 23451,
bidfloor: 0.50
}
}]
}]
```

# adUnit Video

```
var videoAdUnit = {
code: 'video1',
mediaTypes: {
video: {
playerSize: [640, 480],
context: 'instream'
}
},
bids: [{
bidder: 'iqm',
params: {
// placementId: iosDevice ? 13239390 : 13232361, // Add your own placement id here. Note, skippable video is not supported on iOS
publisherId: 'df5fd732-c5f3-11e7-abc4-cec278b6b50a',
placementId: 23451,
geo:{
country:'USA'
},
bidfloor: 0.05,
video: {
placement :2,
mimes: ['video/mp4'],
protocols: [2,5],
skipppable: true,
playback_method: ['auto_play_sound_off']
}
}
}]
};
| Name | Scope | Description | Example | Type |
|---------------|----------|----------------------------|------------------------------------------|-----------|
| `publisherId` | required | The Publisher ID from iQM. | `'df5fd732-c5f3-11e7-abc4-cec278b6b50a'` | `string` |
| `tagId` | required | The Tag ID from iQM. | `'1c5c9ec2-c5f4-11e7-abc4-cec278b6b50a'` | `string` |
| `placementId` | required | The Placement ID from iQM. | `'50cc36fe-c5f4-11e7-abc4-cec278b6b50a'` | `string` |
| `bidfloor` | required | Bid floor | `0.50` | `integer` |
```

0 comments on commit 4892733

Please sign in to comment.