Skip to main content

Retrieve Organization Logo

GET 

/organization/logo

Retrieves the logo of the organization for display in the UI navbar.

Responses

OK

Schema
    stringbinary
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/organization/logo");
request.Headers.Add("Accept", "application/octet-stream");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
ResponseClear

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

Did you find this page helpful?