Configuration
Update Bid Strategy
Stores or updates global bid strategy configuration. Used to calculate bidding prices during ad serving.
POST
Body
application/json
Response
204
Success
Previous
Serving an adServes an ad based on the placement tag (`tagid`) and request payload (`AdRequest`).
Selects the most appropriate ad using campaign, creative, and bidding strategy data.
Returns the final ad determined through DSP response and internal mediation logic.
```bash Request Example
curl --request POST \
--url https://your_a2_service/app/v0/ad/{tagid} \
--header 'Content-Type: application/json' \
--data '{
"user": {
"gender": "M",
"id": "account-187acvbvz",
"yob": 1988
},
"version": "0.1.0"
}'
```
Next