Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request PATCH \ --url http://localhost:8081/admin-service/specialties/{id} \ --header 'Content-Type: application/json' \ --data '{}'
const options = { method: 'PATCH', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({}) }; fetch('http://localhost:8081/admin-service/specialties/{id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "http://localhost:8081/admin-service/specialties/{id}" payload = {} headers = {"Content-Type": "application/json"} response = requests.patch(url, json=payload, headers=headers) print(response.text)
Update specialty (e.g. enable/disable)
The body is of type object.
object
OK