Method: customers.customerAssetSets.mutate

Creates, or removes customer asset sets. Operation statuses are returned.

HTTP request

POST https://googleads.googleapis.com/v14/customers/{customerId}/customerAssetSets:mutate

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
customerId

string

Required. The ID of the customer whose customer asset sets are being modified.

Request body

The request body contains data with the following structure:

JSON representation
{
  "operations": [
    {
      object (CustomerAssetSetOperation)
    }
  ],
  "partialFailure": boolean,
  "validateOnly": boolean,
  "responseContentType": enum (ResponseContentType)
}
Fields
operations[]

object (CustomerAssetSetOperation)

Required. The list of operations to perform on individual customer asset sets.

partialFailure

boolean

If true, successful operations will be carried out and invalid operations will return errors. If false, all operations will be carried out in one transaction if and only if they are all valid. Default is false.

validateOnly

boolean

If true, the request is validated but not executed. Only errors are returned, not results.

responseContentType

enum (ResponseContentType)

The response content type setting. Determines whether the mutable resource or just the resource name should be returned post mutation.

Response body

Response message for a customer asset set mutate.

If successful, the response body contains data with the following structure:

JSON representation
{
  "results": [
    {
      object (MutateCustomerAssetSetResult)
    }
  ],
  "partialFailureError": {
    object (Status)
  }
}
Fields
results[]

object (MutateCustomerAssetSetResult)

All results for the mutate.

partialFailureError

object (Status)

Errors that pertain to operation failures in the partial failure mode. Returned only when partialFailure = true and all errors occur inside the operations. If any errors occur outside the operations (e.g. auth errors), we return an RPC level error.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/adwords

For more information, see the OAuth 2.0 Overview.

CustomerAssetSetOperation

A single operation (create, remove) on a customer asset set.

JSON representation
{

  // Union field operation can be only one of the following:
  "create": {
    object (CustomerAssetSet)
  },
  "remove": string
  // End of list of possible types for union field operation.
}
Fields
Union field operation. The mutate operation. operation can be only one of the following:
create

object (CustomerAssetSet)

Create operation: No resource name is expected for the new customer asset set.

remove

string

Remove operation: A resource name for the removed customer asset set is expected, in this format: customers/{customerId}/customerAssetSets/{asset_set_id}

MutateCustomerAssetSetResult

The result for the customer asset set mutate.

JSON representation
{
  "resourceName": string,
  "customerAssetSet": {
    object (CustomerAssetSet)
  }
}
Fields
resourceName

string

Returned for successful operations.

customerAssetSet

object (CustomerAssetSet)

The mutated customer asset set with only mutable fields after mutate. The field will only be returned when responseContentType is set to "MUTABLE_RESOURCE".