Skip to main content
Version: v3

Get List of Screen Configurations

GET 

http://localhost:3000/api/room/screen/configurations

Retrieve a list of all available screen configurations.

Responses

List of screen configurations retrieved successfully.

Schema
  • Array [
  • widthinteger

    The width of the screen.

    Example: 1280
    heightinteger

    The height of the screen.

    Example: 720
    rateinteger

    The refresh rate of the screen.

    Example: 30
  • ]

Authorization: http

name: BearerAuthtype: httpscheme: bearerdescription: Authentication using a Bearer token.
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "http://localhost:3000/api/room/screen/configurations");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
http://localhost:3000
Auth
ResponseClear

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