Retrieve Organization Logo
GET/organization/logo
Retrieves the logo of the organization for display in the UI navbar.
Responses
- 200
OK
- application/octet-stream
- Schema
- Example (auto)
Schema
stringbinary
"string"
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
ResponseClear
Did you find this page helpful?