Assigns a task to a user without account

Code samples

require 'rest-client'
require 'json'

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

result = RestClient.post 'https://fusion.oxygenxml.com/api/review/tasks/{id}/collaborations',
  params: {
  }, headers: headers

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

r = requests.post('https://fusion.oxygenxml.com/api/review/tasks/{id}/collaborations', headers = headers)

print(r.json())

POST /api/review/tasks/{id}/collaborations

Body parameter

"string"