I want to print dynamic multiline text in whatsapp messages. The messages are sent via Facebook Graph API. I have used the \\n character to insert a new line. See request below.

Request:

POST https://graph.facebook.com/v20.0/XXXXXXXXXXXXXXXX/messages Content Type: application/json; charset=UTF-8 Body: {"messaging_product":"whatsapp","to":"XXXXXXXXXXX","type":"template","template":{"language":{"code":"en"},"name":"order_updated_message","components":[{"type":"body","parameters":[{"type":"text","text":"Jon Doe"},{"type":"text","text":2},{"type":"text","text":" *1. Wrapped Plate, 8 in | 1 Pc*\\nRate: 3.000\\nQty: 8000\\nAmount: 24000.00\\n\\n *2. Bottle Brush | 1 Pc*\\nRate: 18.644\\nQty: 11\\nAmount: 242.00"},{"type":"text","text":24242.00},{"type":"text","text":"John Lee"},{"type":"text","text":"+91XXXXXXXXX"}]}]}} 

The request succeeded till a few days ago, but then kept failing. See the failure response below.

Response:

HTTP Status: 400 Bad Request {     "error": {         "message": "(#100) Invalid parameter",         "type": "OAuthException",         "code": 100,         "error_data": {             "messaging_product": "whatsapp",             "details": "Param text cannot have new-line/tab characters or more than 4 consecutive spaces"         },         "fbtrace_id": "XXXXXXXXXXXXXXXXXXXX"     } } 

If I remove the \\n character, the request succeeds. So Im assuming the failure is caused by \\n itself.

I also tried replacing \\n with the following:

  • \n --> same error
  • \u000A --> same error
  • %0A --> character displayed as it is. (No new-line)

Can you tell me what has gone wrong?

Note: The message body contains our customer's ordered items. The number of items can vary by order and hence the number of lines can vary in each message. Thus, I cannot add new lines in the message template.

Tag:whatsapp, facebook-graph-api, whatsapp-cloud-api, newline

9 comments.

  1. Khalid Yahya

    I've run into this issue too. It looks like WhatsApp has changed the rules. They used to allow \\n in the parameter data, but now it seems that's no longer allowed.

    I did find a workaround. You can use \r instead. It's a carriage return, which moves the cursor back to the start of the line without adding a new line.

    1. Khalid Yahya

      @paritoshbatish Here's the example of the parameter data if we want to have an ordered list in the body. {"data": "1. First Item\r2. Second Item\r3. Third item"} In my case, it's good enough.

    2. Fernando Andrauss

      it works for Windows only. On Android, it shows a space instead.

    3. paritosh batish

      As @FernandoAndrauss pointed out, it only works on iOS or the Windows/mac apps. Not on the Android app or Chrome browser. I have created five templates for 1,2,3,4,5 items (since that's the max list we show) with a view more button below. This hack might work for others as well

    4. Khalid Yahya

      @FernandoAndrauss you are actually right. I think paritosh answer could be an alternative solution for this problem.

    5. Fernando Andrauss

      @paritoshbatish I think this is a good workaround, but it requires a lot of effort. In my case, applying this solution, I will have more than 50 templates to manage, but there is no other way to do it at the moment. Thanks!

  2. Dhruvi Zalavadiya

    as per the latest update, new lines and line breaks are not supported in the WhatsApp API.

    As an alternative:

    If you want to pass variables in the next line, you will need to use different variables for each line.

    Alternatively, you can add spaces to separate text without using line break parameters

    1. Community

      Your answer could be improved with additional supporting information. Please edit to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers in the help center.

  3. Karthic kumar

    Use \r instread its a carriage return which moves the cursor back to start of line without adding a new line.

Add a new comment.