Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions dev-docs/bidders/adgrid.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ The AdGrid Bidding Adapter requires setup and approval before beginning. Please
| Name | Scope | Description | Example | Type |
|------------|----------|--------------|---------|-----------|
| `domainId` | required | Publisher Id | `30164` | `integer` |
| `placement`| required | Placement | `test` | `string` |

### Test Parameters

Expand All @@ -50,7 +51,8 @@ var adUnits = [
bids: [{
bidder: 'adgrid',
params: {
domainId: 12345
domainId: 12345,
placement: 'leaderboard'
}
}]
},
Expand All @@ -64,7 +66,8 @@ var adUnits = [
bids: [{
bidder: 'adgrid',
params: {
domainId: 67890
domainId: 67890,
placement: 'adhesion'
}
}]
},
Expand Down