Dynamics 365 Attach a Note to a Record with C#

3 Comments

To attach a note to to an entity using C#, use the code below. The note entity is “annotation”.

For example, you could attach a note to a case (incident):

[sourcecode language=”CSharp”] string entitytype = "incident";
Entity Note = new Entity("annotation");
Guid EntityToAttachTo = Guid.Parse("FDA93807-4EF3-E711-80F2-3863BB2E34E8"); // The GUID of the incident
Note["objectid"] = new Microsoft.Xrm.Sdk.EntityReference(entitytype, EntityToAttachTo);
Note["objecttypecode"] = entitytype;
Note["subject"] = "Test Subject";
Note["notetext"] = "Test note text";
service.Create(Note);
[/sourcecode]

This would create a note below on the case:

 

Carl de Souza
Keep learning. Keep building.

Explore AI, agents & Microsoft technology.

I share practical ideas, tutorials, and videos about AI, AI agents, Microsoft technologies, and the Power Platform.

Subscribe on YouTube →
Carl de Souza Enterprise Architect at Microsoft · AI Technology Expert

3 Responses to Dynamics 365 Attach a Note to a Record with C#

Leave a Reply

Your email address will not be published. Required fields are marked *