Skip to main content
POST
/
api
/
v1
/
google-ads
/
keywords
/
unpause
Unpause Keywords Batch
curl --request POST \
  --url http://localhost:8000/api/v1/google-ads/keywords/unpause \
  --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>"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

customer_id
integer
required
login_customer_id
integer | null
token_id
integer | null

Body

application/json

Schema for batch keyword operation requests

keywords
KeywordIdentifierSchema · object[]
required

List of keywords to operate on

Response

Successful Response

Schema for batch keyword operation responses

successful_operations
KeywordOperationResultSchema · object[]

List of successful keyword operations

failed_operations
KeywordOperationResultSchema · object[]

List of failed keyword operations