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 PUT \ --url http://localhost:8081/admin-service/institutions/{id}/unities/{unityId} \ --header 'Content-Type: application/json' \ --data '{}'
const options = { method: 'PUT', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({}) }; fetch('http://localhost:8081/admin-service/institutions/{id}/unities/{unityId}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "http://localhost:8081/admin-service/institutions/{id}/unities/{unityId}" payload = {} headers = {"Content-Type": "application/json"} response = requests.put(url, json=payload, headers=headers) print(response.text)
Update unity by id
The body is of type object.
object
OK