London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
var note = new EntityObject("ContactNote"); note["ContactId"] = new PrimaryKeyId(new Guid("{id-of-your-customer-contact}")); note["NoteTitle"] = "..."; note["NoteContent"] = "..."; var pk = BusinessManager.Create(note);
Other properties you may be interested in:
- CreatorId
- ModifierId
- NoteType
Yes by code. I need to add a note to the customer object much like a note can be added to the order object. So that the note will be viewable in the commers manger when you are looking at contat->notes.
As you want to see this field in Commerce Manager, therfore you can create a metafield (Notes) for Contact Object, Update that field in your code, pseudo code will be something like
customContact["NewMetafIeld"] = "customer notes"
customContact.saveChanges()
Regards
/K
We are using Episerver commers 8.16.1 and I am looking for a way to add notes to the customer dynamicly. Any Help would be appreciated.