curl --request GET \
--url http://localhost:8000/api/v1/campaigns/bidding-strategies \
--header 'Authorization: Bearer <token>'{
"bidding_strategies": [
{
"type": "MAXIMIZE_CONVERSIONS",
"name": "<string>",
"description": "<string>",
"requires_target": false,
"target_field": "<string>"
}
]
}Get available bidding strategies for campaign creation.
Returns a list of supported bidding strategy types with descriptions.
curl --request GET \
--url http://localhost:8000/api/v1/campaigns/bidding-strategies \
--header 'Authorization: Bearer <token>'{
"bidding_strategies": [
{
"type": "MAXIMIZE_CONVERSIONS",
"name": "<string>",
"description": "<string>",
"requires_target": false,
"target_field": "<string>"
}
]
}The access token received from the authorization server in the OAuth 2.0 flow.
Successful Response
Response for available bidding strategies.
Show child attributes