Skip to main content

Delete Service

DELETE 

/services/:name

Removes a service integration.

Effects:

  • Active connections are terminated immediately
  • Service tools become unavailable to agents
  • Historical data about tool usage is preserved
  • Running operations may fail

Request

Path Parameters

    name Namerequired

    Unique identifier for the service

Responses

Service successfully removed. Any active connections are terminated.
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://www.parlant.io/services/:name");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Parameters
— pathrequired