knowledgecenter-breadcrum

Knowledge Center

07 Apr, 2022

Create Notes with Attachment using Web API in Dynamics 365

Posted on 07 Apr, 2022 by Admin, Posted in Dynamics 365 , Dynamics 365 Web Api , Dynamics-365 Sales

Create Notes with Attachment using Web API in Dynamics 365 Blogs

Create Notes with Attachment using Web API in Dynamics 365

Create Notes record with Attachment for Contact Entity

var note = {};

note.subject = "Notes Subject";

note.notetext = "Notes Text";

note.filename = "FileName.txt";

note.documentbody = "Base64String";

note["objectid_contact@odata.bind"] = "/contacts(00000000-0000-0000-000000000000)";

Xrm.WebApi.createRecord("annotation", note).then(

function success(result) {

alert("Success");

},

function(error) {

alert(error.message);

});


Note:-

  1. While setting object ID or regrading lookup we have to specify entity name with field schema name

for e.g. objectid_account@odata.bind

  1. documentbody value should be converted to Base64String

Comment

Loading

Recent Updates

Blogs
02 Apr, 2025

Quality is not just an option; it’s a responsibility

In the world of software development, testing is often seen as an optional phase, especially when there is no dedicated…

READ MORE
Thumbnail
Blogs
26 Mar, 2025

What is Power Virtual Agents: Exploring AI-Driven Virtual Chatbots?

What is Power Virtual Agents: Exploring AI-Driven Virtual Chatbots? In today’s digital landscape, businesses are constantly seeking ways to enhance…

READ MORE
Blogs
25 Mar, 2025

Copy Data from API to SQL Server using Azure Data Factory

Introduction: In today's data-driven world, automating data flow between APIs and databases is crucial for efficient data management. Azure Data…

READ MORE