Returns the readers of the given files.

Code samples

require 'rest-client'
require 'json'

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

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

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

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

print(r.json())

POST /api/author/files/files-readers

Body parameter

{
  "filePaths": [
    "string"
  ],
  "taskId": "string"
}