I’m using the POST /productUpdates/create
endpoint to create a product update and publishing it through the POST /productUpdates/{id}/publish
endpoint. When I include a new line (
) in the POST /productUpdates/create content
field, I noticed that this formatting is missing when the post is published.
Here’s an example of content
field that I’m sending through the API: "- Example of item 1
- Example of item 2
- Example of item 3"
I have also tried “
” as well and same result.
This is what I’m seeing after it has been published.
Is it possible to format new lines when sending the content body to the API? Can each of those “-” be formatted as a bullet point as well through the API?