Skip to main content

Delete a Participant

DELETE 

https://YOUR_SPACE.signalwire.com/api/laml/2010-04-01/Accounts/:AccountSid/Conferences/:ConferenceSid/Participants/:CallSid

Deleting a participant will take them out of a conference call. If the delete is successful, a 204 response, with no body, will be returned.

Permissions

The API token must include the following scopes: Voice.

Request

Responses

No Content

Authorization: http

name: basic_authtype: httpscheme: basic
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://YOUR_SPACE.signalwire.com/api/laml/2010-04-01/Accounts/:AccountSid/Conferences/:ConferenceSid/Participants/:CallSid");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://YOUR_SPACE.signalwire.com/api/laml/2010-04-01
Auth
Parameters
— pathrequired
— pathrequired
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!