Skip to main content

List Resources

GET 

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

List Resources

Responses

A list of Resources
Schema
  • Array [
  • 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: relay_application
    created_at date-time
    Example: 2024-01-02T00:00:00Z
    updated_at date-time
    Example: 2024-01-02T00:00:00Z
    relay_application object
    id uuid

    A unique identifier for the Resource

    name string
    Example: Booking Assistant
    topic string
    Example: booking
  • ]

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