I use custom Conversion actions for conversions of different Partners.
The new actions are periodically created automatically when I have a new 
Partner (usually in small batches).

Unfortunately after creating ~360 new conversion types tonight I receive 
the *RequestError.UNKNOWN *from the API.
The first ~360 conversions were created successfully and are available in 
AdWords web-interface.

It feels like I have hit some LIMIT of specific operations, but the error 
message doesn't not really have information.
My total number of Conversion actions (including removed) is 1,078. Just 
enabled ones: 1,069. 

Notes.

   - I create all the Conversion actions in Manager Account level (because 
   for most types I need cross-account) conversion tracking.
   - I usually use v201802, but tried with v201710 as well. Same response

The script I run.
import googleads
client = googleads.adwords.AdWordsClient.LoadFromStorage()
client.SetClientCustomerId('841-135-3369')
service = client.GetService('ConversionTrackerService')
operations = [
    {'operand': {
        'alwaysUseDefaultRevenueValue': False,
        'attributionModelType': 'LAST_CLICK',
        'category': 'DEFAULT',
        'countingType': 'MANY_PER_CLICK',
        'ctcLookbackWindow': 90,
        'defaultRevenueCurrencyCode': 'USD',
        'defaultRevenueValue': 0.0,
        'excludeFromBidding': True,
        'name': 'Foo Website Conversion',
        'status': 'ENABLED',
        'trackingCodeType': 'WEBPAGE',
        'viewthroughLookbackWindow': 30,
        'xsi_type': 'AdWordsConversionTracker'
        },
      'operator': 'ADD'}
      ]
service.mutate(operations)

The following error message is received.

<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
   <soap:Header>
      <ResponseHeader xmlns=
"https://adwords.google.com/api/adwords/cm/v201710";>
         <requestId>00056d432e27dc910aa7850ba80ded43</requestId>
         <serviceName>ConversionTrackerService</serviceName>
         <methodName>mutate</methodName>
         <operations>1</operations>
         <responseTime>283</responseTime>
      </ResponseHeader>
   </soap:Header>
   <soap:Body>
      <soap:Fault>
         <faultcode>soap:Client</faultcode>
         <faultstring>[RequestError.UNKNOWN @ operations[0]]</faultstring>
         <detail>
            <ApiExceptionFault xmlns=
"https://adwords.google.com/api/adwords/cm/v201710";>
               <message>[RequestError.UNKNOWN @ operations[0]]</message>
               <ApplicationException.Type>ApiException
</ApplicationException.Type>
               <errors xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="RequestError">
                  <fieldPath>operations[0]</fieldPath>
                  <fieldPathElements>
                     <field>operations</field>
                     <index>0</index>
                  </fieldPathElements>
                  <trigger/>
                  <errorString>RequestError.UNKNOWN</errorString>
                  <ApiError.Type>RequestError</ApiError.Type>
                  <reason>UNKNOWN</reason>
               </errors>
            </ApiExceptionFault>
         </detail>
      </soap:Fault>
   </soap:Body>
</soap:Envelope>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/66fa9141-2476-46b3-ac57-4834f009623e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to