When a POST is issued on the work note of a task, the journal data is created but not displayed in the taskDescriptionWhen issuing a POST on the work note of a task (for example, incident), the journal data is created but it is not displayed in the task. REST POST/PUT requests do not display a new work_notes added after another update.Steps to Reproduce With a user with roles required to run REST API, open the REST API explorer. For more information, see the product documentation topic REST API explorer. Run a PUT operation to add a work_note comment in any specific incident. The operation ends with the status 200 successful. Review the incident to see that the update was inserted. Try again to insert a new work_note. The REST operation ends with status 200, but this time no record is shown in Incident. Subsequent attempts will fail as well. Using the UI, insert a work note into the same incident. Try to insert a record through REST API again. This time the record is inserted and visible. Try again. The insert will fail to show. This operation will continue failing until an update through the UI is executed. Workaround<!-- ul { list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Instead of inserting the work notes directly via REST API, try updating the work note via a REST call using the import set's API. To implement the work note through import sets via a REST call using the import set API for incident: Create a Transform Map using source incident (u_incident, for example) with the target table as incident. For more information, see the product documentation topic Create a transform map. For the column transformation use number and work note. Number:Source: u_incident.number Target: incident.number Coalesce: trueWork Note: Source: u_incident.u_comments_and_work_notes Target: work_notes Coalesce: false On the REST API, make sure that you select Import Set API from the API Name field. Click the link Create a record in an Import Set staging table (POST). From the column list, select number and type the incident number that you want to update. Add another column and on the list select Comments and Work Notes and type the Work Note. Click Send. Check the incident to make sure that the Work Note was updated for that incident number. Related Problem: PRB933155