Adding new lines to client notes field

How do I add a newline to the client note field using the api? I have tried /n, br and many other variations but I keep getting the message “Illegal unquoted character ((CTRL-CHAR, code 10))”.

You can add new lines/carriage returns through the UI. How do you do it through the API?

Many thanks

Hi Liz,
You can include a line break by entering \n where you want the line break to start.

{
  "name": "Client X",
  "note": "My note about Client X\nThis is a new line"
}

Hope this helps.

Cheers!

Thank you I will give that a try