Initiate disconnection from a specified peer.
the endpoint to disconnect from, expressed as either IP address or URL
OK
"connection removed" or "no known connection for host"
const response = await fetch('https://eos.nownodes.io/v1/net/disconnect', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "endpoint": "text" }), }); const data = await response.json();
text