Hi Roman,
CRM 2015 is not officially supported from the Nintex Workflow CRM actions. You may need to look at doing web service calls to the CRM web services to do what you need.
cheers,
Vadim
Hi Vadim,
Thanks for your answer. I already tried using the CRM webservice:
/XRMServices/2011/Organization.svc?wsdl
The connection is OK but I can't figure out a valid soap body to make a successful call. Does someone ever tried this?
This is what I've sent:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
<soap:Body>
<Create xmlns='http://schemas.microsoft.com/crm/2007/WebServices'>
<entity xsi:type='contact'>
<address1_city>Testcity</address1_city>
<address1_line1>Testaddress</address1_line1>
<address1_postalcode>12324</address1_postalcode>
<address1_stateorprovince>Bern</address1_stateorprovince>
<donotbulkemail>true</donotbulkemail>
<firstname>Peter</firstname>
<lastname>Muster</lastname>
</entity>
</Create>
</soap:Body>
</soap:Envelope>
But as answer I get always the webservice definition main page
Thanks for any help
Roman
Finally solved this using a web request action. Here is an example:
URL: .../XRMServices/2011/OrganizationData.svc/AccountSet
Method: Post
Content type: application/json; charset=utf-8
Content: {"Name":"Testrequestaccount"}
No our target CRM ist not IFD activated. Would be good to know if anyone can confirm this issue and find a solution.
Thanks
Roman