Internal methods to create model from a group of campaigns
Custom Brain allows the client to use the BYOA API to upload a set of logistic coefficients corresponding to any of the variables currently in use by the MediaMath Brain. These coefficients will then be used by participating strategies to calculate the predicted response rate for each impression. The bidder will calculate bid price by multipling the predicted response rate by the strategy's goal value. Goal values can be modified using the MediaMath Platform campaign management API.
It is best for you to contact us early in your process by emailing developers@mediamath.com, as it may take about 48 hours before you are granted API access to begin work on your model.
Custom Bid Router further extends the BYOA architecture allowing advertisers to apply their own bidding algorithms in their own ecosystem. The MediaMath system will invoke an external call to the client with the bid request and await a response that MediaMath can use in our internal auction. Forwarded bid requests adhere to OpenRTB v2.4 format and may be enriched with certain information such as segment membership and pixel recency.
curl -i -X GET \
'https://apidocs.mediamath.com/_mock/apis/byoa-api/custombidrouter/{org_id}/configuration' \
-H ': string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json'
{ "data": { "ACME Org Production Executor": { … } }, "meta": { "status": "success" } }
The Executor ID identifies an Executor which provide a logical grouping for your Bid Valuation endpoints which are then applied to specific campaigns
The Executor ID identifies an Executor which provide a logical grouping for your Bid Valuation endpoints which are then applied to specific campaigns
curl -i -X GET \
'https://apidocs.mediamath.com/_mock/apis/byoa-api/custombidrouter/{org_id}/executors/{executor_id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "data": { "ACME Org Production Executor": { … } }, "meta": { "status": "success" } }
The Executor ID identifies an Executor which provide a logical grouping for your Bid Valuation endpoints which are then applied to specific campaigns
_
curl -i -X PATCH \
'https://apidocs.mediamath.com/_mock/apis/byoa-api/custombidrouter/{org_id}/executors/{executor_id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"sample_rate": 0
}'
{ "data": { "ACME Org Production Executor": { … } }, "meta": { "status": "success" } }
In Customized Brain, the client uses the BYOA API to upload a set of logistic coefficients corresponding to any of the variables currently in use by the MediaMath Brain. These coefficients will then be used by participating strategies to calculate the predicted response rate for each impression. The bidder will calculate bid price by multiplying the predicted response rate by the strategy's goal value. Goal values can be modified using the T1 campaign management API.