I am trying with the below code snippet to update the caller name in Campaign:
Campaign campaign = outboundApi.getOutboundCampaign(CampaignId);
if(campaign != null)
{
campaign.setCallerName("Customer_1");
Campaign result = outboundApi.putOutboundCampaign(CampaignId, campaign);
return response;
}
It gives the error message :
Error: An attempt was made to update a Campaign in an invalid way. Details: Agent owned column cannot be changed once configured
If I don't update "Agent owned column" column then the update works fine using the same SDK method.
Can you please check and help me here?
Regards,
Hari