Skip to content

Commit 9a7d8b1

Browse files
authored
feat(): EXCO Bid Adapter: Support of new publisherId, accountId and tagId parameters. (#5926)
* feat(): EXCO Bid Adapter: Support of new publisherId, accountId and tagId parameters. * feat(): EXCO Bid Adapter: Support of new publisherId, accountId and tagId parameters. * feat(): EXCO Bid Adapter: Support of new publisherId, accountId and tagId parameters.
1 parent 57a18fe commit 9a7d8b1

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

dev-docs/bidders/exco.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,14 @@ sidebarType: 1
2828

2929
{: .table .table-bordered .table-striped }
3030

31-
| Name | Scope | Description | Example | Type |
32-
|------------|----------|-------------------------------------------------------------------------------------------|------------------------------|----------|
33-
| `cId` | required | The connection ID from Exco. | `'562524b21b1c1f08117fc7f9'` | `string` |
34-
| `pId` | required | The publisher ID from Exco. | `'59ac17c192832d0011283fe3'` | `string` |
35-
| `bidFloor` | optional | The minimum bid value desired. Exco will not respond with bids lower than this value. | `0.90` | `float` |
31+
| Name | Scope | Description | Example | Type |
32+
|---------------|------------|---------------------------------------------------------------------------------------|------------------------------|----------|
33+
| `cId` | deprecated | The connection ID from Exco. | `'562524b21b1c1f08117fc7f9'` | `string` |
34+
| `pId` | deprecated | The publisher ID from Exco. | `'59ac17c192832d0011283fe3'` | `string` |
35+
| `bidFloor` | deprecated | The minimum bid value desired. Exco will not respond with bids lower than this value. | `0.90` | `float` |
36+
| `accountID` | required | A unique account identifier provided by EX.CO. | `'1234567890'` | `string` |
37+
| `publisherId` | required | Publisher ID provided by EX.CO. | `'1234567890'` | `string` |
38+
| `tagId` | required | A unique Tag ID (supply id) identifier provided by EX.CO. | `'1234567890'` | `string` |
3639

3740
### Example
3841

@@ -50,9 +53,9 @@ var adUnits = [{
5053
bids: [{
5154
bidder: 'exco',
5255
params: {
53-
cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP...
54-
pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP...
55-
bidFloor: 1.23 // Optional
56+
accountID: '1234567890', // Required - PROVIDED DURING SETUP...
57+
publisherId: '1234567890', // Required - PROVIDED DURING SETUP...
58+
tagId: '1234567890' // Required - PROVIDED DURING SETUP...
5659
}
5760
}]
5861
}

0 commit comments

Comments
 (0)