Update option
curl --request PUT \
--url http://localhost:8081/protocols/{id}/options/{optionId} \
--header 'Content-Type: application/json' \
--data '
{
"optionText": "<string>",
"score": 123,
"position": 123
}
'const options = {
method: 'PUT',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({optionText: '<string>', score: 123, position: 123})
};
fetch('http://localhost:8081/protocols/{id}/options/{optionId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:8081/protocols/{id}/options/{optionId}"
payload = {
"optionText": "<string>",
"score": 123,
"position": 123
}
headers = {"Content-Type": "application/json"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)Update option
PUT
/
protocols
/
{id}
/
options
/
{optionId}
Update option
curl --request PUT \
--url http://localhost:8081/protocols/{id}/options/{optionId} \
--header 'Content-Type: application/json' \
--data '
{
"optionText": "<string>",
"score": 123,
"position": 123
}
'const options = {
method: 'PUT',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({optionText: '<string>', score: 123, position: 123})
};
fetch('http://localhost:8081/protocols/{id}/options/{optionId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:8081/protocols/{id}/options/{optionId}"
payload = {
"optionText": "<string>",
"score": 123,
"position": 123
}
headers = {"Content-Type": "application/json"}
response = requests.put(url, json=payload, headers=headers)
print(response.text)⌘I