Skip to main content

Delete a Room Recording.

DELETE 

https://YOUR_SPACE.signalwire.com/api/video/room_recordings/:id

Delete a Room Recording.

Permissions

The API token must include the following scopes: Video.

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/video/room_recordings/:id");
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/video
Auth
Parameters
— pathrequired
ResponseClear

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