Skip to main content

Get unread board messages

GET 

https://api.apparyllis.com/v1/board/unread

Get all unread board messages for this system

Responses

OK

Schema
  • Array [
  • existsboolean
    idstring

    Message Id

    content object

    The message content

    titlestring

    Title of the message

    messagestring

    The message of the message

    writtenBystring

    Id of the member that wrote this message

    writtenForstring

    Id of the member that this message is for

    writtenAtinteger

    Time in Milliseconds since epoch

    readboolean

    Whether this message is read or not

    supportMarkdownboolean

    Whether this board message supports markdown

    uidstring

    The user Id of the system

    lastOperationTimestring

    Time in milliseconds since epoch of the last update on this object

  • ]

Authorization: Authorization

name: Authorizationtype: apiKeyin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.apparyllis.com/v1/board/unread");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "<Authorization>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.apparyllis.com
Auth
ResponseClear

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