Hello!
Have successfully done an uploadConversionAdjustments for the uploadClickConversions method, and now need to do the same but for the uploadCallConversions method and it returns an error if used callerId instead of gclid. How can solve that?
This is the way I did it for uploadCallConversions and it worked correctly for me:
------------------------------------------------------------------------------------------------------------------------------------------------------
METHOD: customers.uploadConversionAdjustments
ENDPOINT POST:
https://googleads.googleapis.com/v13/customers/[customer-id]:uploadConversionAdjustmentsBODY:
{
"conversionAdjustments": [
{
"gclidDateTimePair": {
"gclid": "[gclid]",
"conversionDateTime": "2023-09-23 01:15:00-05:00"
},
"adjustmentType": "RETRACTION",
"conversionAction": "customers/[login-customer-id]/conversionActions/[conversion-action]",
"adjustmentDateTime": "2023-09-26 10:30:00-05:00"
}
],
"partialFailure": true,
"validateOnly": true
}
HEADERS:
developer-token: [developer-token]
login-customer-id: [login-customer-id]
Authorization: Bearer [Authorization]
------------------------------------------------------------------------------------------------------------------------------------------------------
Await your response, thank you very much!