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.
Nexudus SDK
The official .NET SDK for interacting with the Nexudus REST API programmatically
How to delete entities in Nexudus using the SDK.
DeleteAsync
var endpoint = new CoworkerEndpoint(client); await endpoint.DeleteAsync(id); Console.WriteLine("Coworker deleted.");
InvalidOperationException
try { await endpoint.DeleteAsync(id); Console.WriteLine("Deleted successfully."); } catch (InvalidOperationException ex) { Console.WriteLine($"Deletion failed: {ex.Message}"); }
Was this page helpful?