Example #1
0
        public void Pulse_UpdateNote_Pass()
        {
            var noteDto = new NoteDto
            {
                UserId       = 5412166,
                NoteTitle    = "Unit Test Title - Update",
                NoteText     = "Unit Test Content Text - Update",
                CreateUpdate = true,
                Locked       = true
            };

            var result = _mondayClient.UpdateNote(143083605, 6150364, noteDto).Result;

            Assert.IsTrue(result != null);
        }