Configuration
Update Bid Strategy
Stores or updates global bid strategy configuration. Used to calculate bidding prices during ad serving.
POST
Body
application/json
Maximum cost-per-mille (CPM) allowed for bidding.
Currency used for bidding (e.g., "USD", "KRW").
Minimum cost-per-mille (CPM) allowed for bidding.
Language code relevant to the ad context (e.g., "en", "ko").
Trade-off ratio between yield (fill rate) and ROAS (return e.g. impressions on ad spend). Values closer to 1 prioritize yield; closer to 0 prioritize ROAS.
Response
204
Success
Was this page helpful?
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