curl --request PATCH \
--url http://localhost:8000/api/v1/google-ads/keywords/{ad_group_id}/{criterion_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"status": "ENABLED",
"cpc_bid_micros": 1
}
'{
"success": true,
"criterion_id": 123,
"resource_name": "<string>",
"error_code": "<string>",
"error_message": "<string>"
}Update a keyword’s status and/or CPC bid.
curl --request PATCH \
--url http://localhost:8000/api/v1/google-ads/keywords/{ad_group_id}/{criterion_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"status": "ENABLED",
"cpc_bid_micros": 1
}
'{
"success": true,
"criterion_id": 123,
"resource_name": "<string>",
"error_code": "<string>",
"error_message": "<string>"
}The access token received from the authorization server in the OAuth 2.0 flow.