Skip to main content
Version: v3

Get Clipboard Image

GET 

http://localhost:3000/api/room/clipboard/image.png

Retrieve the current image content of the clipboard.

Responses

Clipboard image retrieved successfully.

Schema
    stringbinary

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/clipboard/image.png");
request.Headers.Add("Accept", "image/png");
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!