Marks a file as being read by the current user.

Code samples

require 'rest-client'
require 'json'

headers = {
  'Content-Type' => 'application/json'
}

result = RestClient.post 'https://fusion.oxygenxml.com/api/author/files/markread',
  params: {
  }, headers: headers

p JSON.parse(result)
import requests
headers = {
  'Content-Type': 'application/json'
}

r = requests.post('https://fusion.oxygenxml.com/api/author/files/markread', headers = headers)

print(r.json())

POST /api/author/files/markread

Body parameter

{
  "filePath": "string",
  "taskId": "string"
}