Skip to main content

List LAML Applications

GET 

https://YOUR_SPACE.signalwire.com/api/fabric/resources/laml_applications

List LAML Applications

Responses

A list of LAML Applications

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/laml_applications");
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
ResponseClear

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