Skip to main content

List SIP endpoint Addresses

GET 

https://YOUR_SPACE.signalwire.com/api/fabric/resources/sip_endpoints/:id/addresses

Returns a list of SIP endpoint addresses.

Request

Responses

A list of SIP endpoint addresses

Authorization: http

name: basic_authtype: httpscheme: basicdescription: Basic HTTP Authentication
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://YOUR_SPACE.signalwire.com/api/fabric/resources/sip_endpoints/:id/addresses");
request.Headers.Add("Accept", "application/json");
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/fabric
Auth
Parameters
— pathrequired
ResponseClear

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