Returns the readers of the given file.
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/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/readers', headers = headers) print(r.json())
POST /api/author/files/readers
Body parameter
{ "filePath": "string", "taskId": "string" }