Skip to content

Commit

Permalink
clarified interpretResponse requestId and removed example that didn't…
Browse files Browse the repository at this point in the history
… apply to SRA (#533)
  • Loading branch information
snapwich authored and rmloveland committed Jan 9, 2018
1 parent 40bf3bb commit 8fcd4ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev-docs/bidder-adaptor.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ The `interpretResponse` function will be called when the browser has received th
// const headerValue = serverResponse.headers.get('some-response-header')
const bidResponses = [];
const bidResponse = {
requestId: bidRequest.bidId,
requestId: BID_ID,
cpm: CPM,
width: WIDTH,
height: HEIGHT,
Expand All @@ -272,7 +272,7 @@ The parameters of the `bidObject` are:
{: .table .table-bordered .table-striped }
| Key | Scope | Description | Example |
|--------------+---------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------|
| `requestId` | Required | The bid ID. Used to tie this bid back to the request. | 12345 |
| `requestId` | Required | The bid ID that was sent to `spec.buildRequests` as `bidRequests[].bidId`. Used to tie this bid back to the request. | 12345 |
| `cpm` | Required | The bid price. We recommend the most granular price a bidder can provide | 3.5764 |
| `width` | Required | The width of the returned creative. For video, this is the player width. | 300 |
| `height` | Required | The height of the returned creative. For video, this is the player height. | 250 |
Expand Down

0 comments on commit 8fcd4ab

Please sign in to comment.