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
- 204
- 404
- 422
Service successfully removed. Any active connections are terminated.
Service not found. May have been deleted by another request.
Validation Error
- application/json
- Schema
- Example (auto)
Schema
detail object[]
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());