Update tenant settings
PUT
/admin/settings
const url = 'https://shoehorn.example.com/api/v1/admin/settings';const options = {method: 'PUT', headers: {'Content-Type': 'application/json'}, body: '{}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url https://shoehorn.example.com/api/v1/admin/settings \ --header 'Content-Type: application/json' \ --data '{}'Request Body required
Section titled “Request Body required ” Media type application/json
object
Example generated
{}Responses
Section titled “ Responses ”Settings updated