Hello,
I have contacted the product team through the means you provided. I'll be waiting on their answer.
Meanwhile, I already tried what your guide suggests and it refuses the various types and categories. Here are the tests we did and the response we got:
Test 1
.setCategory(ConversionActionCategoryEnum.ConversionActionCategory.STORE_VISIT)
.setOrigin(ConversionOriginEnum.ConversionOrigin.STORE)
.setType(ConversionActionTypeEnum.ConversionActionType.WEBPAGE) // Although that's not really what we want
com.google.ads.googleads.v11.errors.GoogleAdsException: errors {
error_code {
field_error: INVALID_VALUE
}
message: "The field\'s value is invalid."
trigger {
int64_value: 26
}
location {
field_path_elements {
field_name: "operations"
index: 0
}
field_path_elements {
field_name: "create"
}
field_path_elements {
field_name: "category"
}
}
}
Test 2
.setCategory(ConversionActionCategoryEnum.ConversionActionCategory.STORE_VISIT)
.setOrigin(ConversionOriginEnum.ConversionOrigin.STORE)
.setType(ConversionActionTypeEnum.ConversionActionType.STORE_VISITS)
com.google.ads.googleads.v11.errors.GoogleAdsException: errors {
error_code {
conversion_action_error: CREATION_NOT_SUPPORTED
}
message: "Creation of this conversion action type isn\'t supported by Google Ads API."
location {
field_path_elements {
field_name: "operations"
index: 0
}
field_path_elements {
field_name: "create"
}
field_path_elements {
field_name: "type"
}
}
}
Test 3
.setCategory(ConversionActionCategoryEnum.ConversionActionCategory.GET_DIRECTIONS)
.setOrigin(ConversionOriginEnum.ConversionOrigin.GOOGLE_HOSTED)
.setType(ConversionActionTypeEnum.ConversionActionType.GOOGLE_HOSTED)
com.google.ads.googleads.v11.errors.GoogleAdsException: errors {
error_code {
conversion_action_error: CREATION_NOT_SUPPORTED
}
message: "Creation of this conversion action type isn\'t supported by Google Ads API."
location {
field_path_elements {
field_name: "operations"
index: 0
}
field_path_elements {
field_name: "create"
}
field_path_elements {
field_name: "type"
}
}
}
Test 4
.setCategory(ConversionActionCategoryEnum.ConversionActionCategory.GET_DIRECTIONS)
.setOrigin(ConversionOriginEnum.ConversionOrigin.GOOGLE_HOSTED)
.setType(ConversionActionTypeEnum.ConversionActionType.UNKNOWN)
com.google.ads.googleads.v11.errors.GoogleAdsException: errors {
error_code {
request_error: INVALID_ENUM_VALUE
}
message: "Enum value \'UNKNOWN\' cannot be used."
location {
field_path_elements {
field_name: "operations"
index: 0
}
field_path_elements {
field_name: "create"
}
field_path_elements {
field_name: "type"
}
}
}
I already read through:
And a bunch of other pages without success.
Thanks for your help
Regards
Laurent