Quick Help

The knowledgebase is a categorized collection of answers to frequently asked questions (FAQ) and articles. You can read articles in this category or select a subcategory that you are interested in.



 Prebid: Handling Null auctionid in /pixservices Endpoint

Solution

If the call payload to the /pixservices endpoint contains a null value in the auctionid field, you must update your Prebid.js configuration to ensure transaction IDs (TIDs) are enabled. This will help prevent issues related to missing auction identifiers.

Required Configuration:

Add the following line to your Prebid.js setup:
pbjs.setConfig({ enableTIDs: true });

Steps:

  1. Open your Prebid.js integration script.
  2. Before any ad units are defined or auctions are run, insert the configuration line above.
  3. Save and deploy your updated script.
Result:
This configuration ensures that each auction is assigned a unique transaction ID, preventing null values in the auctionid field of the /pixservices payload.