Cannot implicitly convert type 'Salesforce.Common.Models.SuccessResponse' to 'string'
CreateAsync method returns SuccessResponse if you are facing cannot implicitly convert type error. It has three properties: string Id, object Error, and string Success. So, this should work: var response = await client.CreateAsync("Account", a); string Id = response.Id;Your example code worked in the past, but when…
Answered Aug 8, 2021 · 1.2K Views Read answer →