Skip to main content

Get LAML Application

GET 

https://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

A LAML Application
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 uuid

    A unique identifier for the LAML Application

    account_sid uuid
    Example: 1313fe58-5e14-4c11-bbe7-6fdfa11fe780
    voice_url uri
    Example: https://example.com/call_request_url
    voice_method string

    Possible values: [GET, POST]

    Example: POST
    voice_fallback_url uri
    Example: https://example.com/call_fallback_url
    voice_fallback_method string

    Possible values: [GET, POST]

    Example: POST
    status_callback uri
    Example: https://example.com/call_status_url
    status_callback_method string

    Possible values: [GET, POST]

    Example: POST
    voice_caller_id_lookup
    Example: null
    sms_url uri
    Example: https://example.com/message_request_url
    sms_method string

    Possible values: [GET, POST]

    Example: POST
    sms_fallback_url uri
    Example: https://example.com/message_url
    sms_fallback_method string

    Possible values: [GET, POST]

    Example: POST
    sms_status_callback uri
    Example: https://example.com/message_status_url
    sms_status_callback_method string

    Possible values: [GET, POST]

    Example: POST
    message_status_callback uri
    Example: https://example.com/message_status_url
    api_version string
    Example: 2010-04-01
    uri string
    Example: https://example.com
    request_url uri
    Example: https://example.signalwire.com/relay-bins/2537c89e-2606-48c2-b3c2-bb601d863d1e
    display_name string
    Example: My Laml Application

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/:id");
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!