List SIP endpoint Addresses
GEThttps://YOUR_SPACE.signalwire.com/api/fabric/resources/sip_endpoints/:id/addresses
Returns a list of SIP endpoint addresses.
Request
Responses
- 200
A list of SIP endpoint addresses
Authorization: http
name: basic_authtype: httpscheme: basicdescription: Basic HTTP Authentication
- 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.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());
ResponseClear