curl --request POST \
--url http://localhost:8000/api/v1/google-ads/ad-schedule/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"campaign_id": 123,
"resource_names": [
"<string>"
]
}
'{
"success": true,
"successful_count": 0,
"failed_count": 0,
"errors": [
{}
]
}Delete ad schedule criteria by resource names.
curl --request POST \
--url http://localhost:8000/api/v1/google-ads/ad-schedule/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"campaign_id": 123,
"resource_names": [
"<string>"
]
}
'{
"success": true,
"successful_count": 0,
"failed_count": 0,
"errors": [
{}
]
}The access token received from the authorization server in the OAuth 2.0 flow.