End-user user-field multi-line line break | Community
Skip to main content

End-user user-field multi-line line break

  • January 21, 2022
  • 1 reply
  • 0 views

Eric26

Are there any way of sending a string with line breaks for an end-users user-field of type multi-line? And if so, how? Or if that's not possible, is it possible for user notes? 

1 reply

Eric27
  • January 21, 2022
Hey Eric,

You sure can, you'll just need to specify the line breaks with \n in your json. 
 
{
    "user":{
        "notes": "This is line 1\nThis is a line 2"
    }
}

Hope this helps,