TODO
PUT
/api/admin/servers/{id}
const url = 'http://localhost:5173/api/admin/servers/example';const options = { method: 'PUT', headers: {cookie: 'authjs.session-token=<authjs.session-token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url http://localhost:5173/api/admin/servers/example \ --cookie authjs.session-token=<authjs.session-token>Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string
Responses
Section titled “Responses”TODO

