Hi all,
I am trying to qualify lead using CRM Web api
I need to pass MSCRM.SuppressDuplicateDetection value as bool in header but unable to pass in c#
Itried by this way
_httpClient.DefaultRequestHeaders.Add("SuppressDuplicateDetection", true);
I tried by this way also
_httpClient.DefaultRequestHeaders.Add("SuppressDuplicateDetection", true.ToString());
This is response when i am calling with above method
error":{"code":"0x8006088a","message":"MSCRM.SuppressDuplicateDetection parameter should be a boolean"}
Issue is how do i pass boolean value