***
id: 9c6d9e00-acd3-4ab3-944f-f0a975931a33
slug: /sdks/reference/conference-participants/delete
title: Delete
sidebar-title: Delete
max-toc-depth: 3
----------------
Use this endpoint for the Conference Participants method to delete a participant, removing them from the conference call.
If the delete is successful, a 204 response, with no body, will be returned.
## Request examples
```javascript title="Node.js"
const { RestClient } = require('@signalwire/compatibility-api')
const client = RestClient('YourProjectID', 'YourAuthToken', { signalwireSpaceUrl: 'example.signalwire.com' })
client.conferences('ConferenceSid')
.participants('CallSid')
.remove()
.then(participant => console.log(participant.callSid))
.done();
```
```csharp
using System;
using System.Collections.Generic;
using Twilio;
using Twilio.Rest.Api.V2010.Account.Conference;
class Program
{
static void Main(string[] args)
{
TwilioClient.Init("YourProjectID", "YourAuthToken", new Dictionary { ["signalwireSpaceUrl"] = "{SPACE}.signalwire.com" });
ParticipantResource.Delete(
pathConferenceSid: "ConferenceSid",
pathCallSid: "CallSid"
);
}
}
```
```python
from signalwire.rest import Client as signalwire_client
client = signalwire_client("YourProjectID", "YourAuthToken", signalwire_space_url = 'example.signalwire.com')
client.conferences('ConferenceSid') \
.participants('CallSid') \
.delete()
```
```ruby
require 'signalwire/sdk'
@client = Signalwire::REST::Client.new 'YourProjectID', 'YourAuthToken', signalwire_space_url: "example.signalwire.com"
@client.conferences('ConferenceSid')
.participants('CallSid')
.delete
```
## Response
A successful request returns a 204 status code with no body.