Daniele Perito

Results 8 comments of Daniele Perito

Thanks for the quick answer! I had seen that, what's unclear to me is whether [this class](https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_dml_convertLead.htm) is just patching a lead and triggering a conversion or whether it's doing...

Ok. The answer [here](https://developer.salesforce.com/forums/?id=906F0000000D6SBIA0) seems to suggest that there is an endpoint called `your_instance_url/services/apexrest/convertlead` where I can POST `{"leadId" : lead_id}`. Is my understanding correct? Do the endpoints under Apex...

Got it! I'll play around with it and report back, if it works perhaps we can add it to the README for future reference.

Alright, I'm making some progress but encountering issues as well. First, I had to temporarily work around `ForceApi` because the public `request` method prepends `uriBase()` to the path (`session.getApiEndpoint()+"/services/data/"+config.getApiVersionString()`). The...

To add to my comment above, after reading a bit more about Apex it looks like I'll have to wire up the endpoint to convert a lead on the Salesforce...

Hi, I was finally able convert a lead into an account and it works! I'm still having to work around the fact that `apiRequest` is not public and `request` prefixes...

I don't know. I'm new to the Salesforce API but I wouldn't be surprised if there were more endpoints under services.