Greetings,

Is JSON over HTTP 1.1 supported for Call Conversion Uploads?

I am able to successfully execute the campaign budget create sample as 
follows:

URL: https://googleads.googleapis.com/v1/customers/{customer_id}
/campaignBudgets:mutate

JSON:

{
  operations:
  [
    {
    create: {
        name: "fing budget 130",
        amount_micros: "60000000"
       }
    }
  ],
  validate_only: "' + [validate_only] + '"
}

Logic says the Call Conversion Upload should be formatted something like 
the following:

URL: https://googleads.googleapis.com/v1/customers/{customer_id}
/conversionActions:mutate

JSON:

{
customer_id : "{customer_id}",
conversions:
[ 
  {
         caller_id: "+11111111111",
         call_start_date_time: "2019-06-02 18:25:54",
         conversion_action: "XXX Prospect Call Sale",
         conversion_date_time: "2019-06-02 18:55:32",
         conversion_value: 1000,
         currency_code: "USD"
    }
],
 validate_only: "1"
}

I have tried many combinations, but I either get a 404 (because the URL is 
not recognized) or I get a 400 bad request because it "cannot find field" 
(because it's not the expected JSON).

The URL I have above it at least found (I don't get the 404).  I tried many 
other versions of this URL based on the resource being defined as below, 
but all give me a 404 (i.e. including the conversion action id, trying 
conversionActions:upload or conversionActions:add or 
conversionActions:create and so on and so on)

customers/{customer_id}/conversionActions/{conversion_action_id}

Thanks for any help.

Mark

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 [email protected]
To unsubscribe from this group, send email to
[email protected]
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6f5681b4-6629-4188-9995-d86b587ee20d%40googlegroups.com.

Reply via email to