I have been creating entities over the API into Dynamics.
For e.g -
Entity contact = new Entity("contact"); contact.Attributes.Add("fullname", "h api test"); contact.Attributes.Add("emailaddress1", "hh@devenv1.local"); contact.Attributes.Add("telephone1", "1"); Guid contactId = service.Create(contact);
I have also used retrieve and delete methods.
I have done this for account, incident and task entities.
I want to create more over the API and interact with more fields/forms, so I want to know what else can I do using service or something similar.
Any documentation for help.
Thanks