curl --request POST \
--url http://localhost:8000/api/v1/google-ads/keywords/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"keywords": [
{
"ad_group_id": 123,
"criterion_id": 123
}
]
}
'{
"successful_operations": [
{
"ad_group_id": 123,
"criterion_id": 123,
"success": true,
"resource_name": "<string>",
"error": "<string>"
}
],
"failed_operations": [
{
"ad_group_id": 123,
"criterion_id": 123,
"success": true,
"resource_name": "<string>",
"error": "<string>"
}
]
}Remove keywords from ad groups.
curl --request POST \
--url http://localhost:8000/api/v1/google-ads/keywords/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"keywords": [
{
"ad_group_id": 123,
"criterion_id": 123
}
]
}
'{
"successful_operations": [
{
"ad_group_id": 123,
"criterion_id": 123,
"success": true,
"resource_name": "<string>",
"error": "<string>"
}
],
"failed_operations": [
{
"ad_group_id": 123,
"criterion_id": 123,
"success": true,
"resource_name": "<string>",
"error": "<string>"
}
]
}The access token received from the authorization server in the OAuth 2.0 flow.
Schema for batch keyword operation requests
List of keywords to operate on
Show child attributes
Successful Response