Created
January 8, 2019 13:37
-
-
Save nealeu/5441c16768cff2f9853c52d3421d2dcd to your computer and use it in GitHub Desktop.
An example OpenRTB request used when testing adapter on prebid-server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For a quick start check out IDEA's HTTP Requests collection (Tools|HTTP Client|Open HTTP Requests Collection). | |
POST http://localhost:8000/openrtb2/auction | |
Content-Type: application/json | |
{ | |
"id": "must be string", | |
"imp": [ | |
{ | |
"id": "test-imp-id", | |
"banner": { | |
"format": [{"w": 728, "h": 250}] | |
}, | |
"ext": { | |
"consumable": { | |
"networkId": 11, | |
"siteId": 32, | |
"unitId": 42, | |
"unitName": "the-answer" | |
} | |
} | |
} | |
], | |
"site": { | |
"id": "site-id" | |
} | |
} | |
### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The above file can be run with Jetbrains IDEA's HTTP Client