Skip to content

Commit 3e7a97f

Browse files
Update for pixfuture.md (prebid#5915)
* Update for pixfuture.md * Made changes regarding GitHub reviews * Made changes regarding GitHub reviews * Made changes regarding GitHub reviews * Update of pixfuture.md
1 parent 1ddefb6 commit 3e7a97f

File tree

1 file changed

+65
-4
lines changed

1 file changed

+65
-4
lines changed

dev-docs/bidders/pixfuture.md

Lines changed: 65 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,69 @@ pbs: false
1414
pbjs: true
1515
sidebarType: 1
1616
---
17-
#### Bid Params
1817

19-
| Name | Scope | Description | Example | Type |
20-
|---------------------|----------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|------------------|
21-
| `pix_id` | required | The pix_id is an ID from PixFuture. The `pix_id` parameter should be a `string` | `"Abc123"` | `string` |
18+
### Overview
19+
20+
The PixFuture Bidder Adapter connects publishers to PixFuture’s demand via Prebid.js, supporting banner media types. To use this adapter, your PixFuture account must be approved for Prebid integration. Contact <support@pixfuture.com> to request activation or for setup assistance.
21+
22+
#### Solution
23+
24+
To download the PixFuture adapter for Prebid.js, visit [https://docs.prebid.org/download.html](https://docs.prebid.org/download.html) and select the `pixfuture` bidder from the list, along with other bidders you wish to include in your build.
25+
26+
**Important:** The `pixfuture` adapter requires account approval from PixFuture. To enable this integration, email <support@pixfuture.com>.
27+
28+
---
29+
30+
### Bid Parameters
31+
32+
| Name | Scope | Description | Example | Type |
33+
|------------|----------|--------------------------------------------------------------------|---------------|----------|
34+
| `pix_id` | required | A unique ID for your site’s ad placement. Corresponds to each ad size. | `"12312345"` | `string` |
35+
36+
These bid parameters are supported the Prebid.js pixfuture adapter.
37+
38+
The `pix_id` is a unique identifier provided by PixFuture and must be specified for each ad placement/size combination.
39+
40+
---
41+
42+
### Prebid.js Integration
43+
44+
#### Basic Prebid.js Example
45+
46+
Below is an example of configuring ad units for PixFuture in Prebid.js:
47+
48+
```javascript
49+
var adUnits = [
50+
{
51+
code: 'test-div-300x250',
52+
mediaTypes: {
53+
banner: {
54+
sizes: [[300, 250]]
55+
}
56+
},
57+
bids: [
58+
{
59+
bidder: 'pixfuture',
60+
params: {
61+
pix_id: "11234567890"
62+
}
63+
}
64+
]
65+
},
66+
{
67+
code: 'test-div2-728x90',
68+
mediaTypes: {
69+
banner: {
70+
sizes: [[728, 90]]
71+
}
72+
},
73+
bids: [
74+
{
75+
bidder: 'pixfuture',
76+
params: {
77+
pix_id: "0987654321"
78+
}
79+
}
80+
]
81+
}
82+
];

0 commit comments

Comments
 (0)