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 POST \ --url http://localhost:8081/admin-service/institutions/{id}/unities/{unityId}/users \ --header 'Content-Type: application/json' \ --data '{}'
const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({}) }; fetch('http://localhost:8081/admin-service/institutions/{id}/unities/{unityId}/users', 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}/users" payload = {} headers = {"Content-Type": "application/json"} response = requests.post(url, json=payload, headers=headers) print(response.text)
Attach user to unity
The body is of type object.
object
OK