github.com/prebid/prebid-server@v0.275.0/adapters/amx/amxtest/exemplary/simple-native.json (about) 1 { 2 "mockBidRequest": { 3 "id": "req_id", 4 "imp": [ 5 { 6 "id": "imp_id", 7 "native": { 8 "request": "{\"native\":{\"ver\":1.1,\"assets\":[]}}", 9 "ver": "1.1" 10 }, 11 "ext": { 12 "bidder": { 13 "siteId": "1234" 14 } 15 } 16 } 17 ] 18 }, 19 "httpcalls": [ 20 { 21 "expectedRequest": { 22 "uri": "http://pbs-dev.amxrtb.com/auction/openrtb?v=pbs1.2", 23 "body": { 24 "id": "req_id", 25 "imp": [ 26 { 27 "id": "imp_id", 28 "native": { 29 "request": "{\"native\":{\"ver\":1.1,\"assets\":[]}}", 30 "ver": "1.1" 31 }, 32 "ext": { 33 "bidder": { 34 "siteId": "1234" 35 } 36 } 37 } 38 ] 39 } 40 }, 41 "mockResponse": { 42 "status": 200, 43 "body": { 44 "id": "req_id", 45 "seatbid": [ 46 { 47 "seat": "123", 48 "bid": [ 49 { 50 "id": "example_bid_id", 51 "impid": "example_imp_id", 52 "price": 1, 53 "adid": "12345678", 54 "adm": "{\"native\":{\"ver\":1.1,\"assets\":[]}}", 55 "adomain": ["advertiser.com"], 56 "cid": "1", 57 "crid": "12345", 58 "cat": ["IAB1-1"], 59 "ext": { 60 "ct": 10 61 } 62 } 63 ] 64 } 65 ], 66 "bidid": "123456", 67 "cur": "USD" 68 } 69 } 70 } 71 ], 72 "expectedBidResponses": [ 73 { 74 "currency": "USD", 75 "bids": [ 76 { 77 "bid": { 78 "id": "example_bid_id", 79 "impid": "example_imp_id", 80 "price": 1, 81 "adid": "12345678", 82 "adm": "{\"native\":{\"ver\":1.1,\"assets\":[]}}", 83 "adomain": ["advertiser.com"], 84 "cid": "1", 85 "crid": "12345", 86 "cat": ["IAB1-1"], 87 "ext": { 88 "ct": 10 89 } 90 }, 91 "type": "native" 92 } 93 ] 94 } 95 ] 96 }