Get LAML Application
GEThttps://YOUR_SPACE.signalwire.com/api/fabric/resources/laml_applications/:id
Returns a LAML Application by ID.
Request
Path Parameters
id uuidrequired
The ID of the LAML Application
Responses
- 200
A LAML Application
- application/json
- Schema
- Example (auto)
Schema
id uuid
Example:
993ed018-9e79-4e50-b97b-984bd5534095
project_id uuid
Example:
1313fe58-5e14-4c11-bbe7-6fdfa11fe780
display_name string
Example:
Reception
type string
Example:
laml_application
created_at date-time
Example:
2024-01-02T00:00:00Z
updated_at date-time
Example:
2024-01-02T00:00:00Z
laml_application object
{
"id": "993ed018-9e79-4e50-b97b-984bd5534095",
"project_id": "1313fe58-5e14-4c11-bbe7-6fdfa11fe780",
"display_name": "Reception",
"type": "laml_application",
"created_at": "2024-01-02T00:00:00Z",
"updated_at": "2024-01-02T00:00:00Z",
"laml_application": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"account_sid": "1313fe58-5e14-4c11-bbe7-6fdfa11fe780",
"voice_url": "https://example.com/call_request_url",
"voice_method": "POST",
"voice_fallback_url": "https://example.com/call_fallback_url",
"voice_fallback_method": "POST",
"status_callback": "https://example.com/call_status_url",
"status_callback_method": "POST",
"voice_caller_id_lookup": null,
"sms_url": "https://example.com/message_request_url",
"sms_method": "POST",
"sms_fallback_url": "https://example.com/message_url",
"sms_fallback_method": "POST",
"sms_status_callback": "https://example.com/message_status_url",
"sms_status_callback_method": "POST",
"message_status_callback": "https://example.com/message_status_url",
"api_version": "2010-04-01",
"uri": "https://example.com",
"request_url": "https://example.signalwire.com/relay-bins/2537c89e-2606-48c2-b3c2-bb601d863d1e",
"display_name": "My Laml Application"
}
}
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/laml_applications/:id");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear