Skip to main content

Write board message

POST 

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

Write a new board message for a member

Request

Path Parameters

    id string

    Optional Id of the object. If supplied, this must be a mongodb objectID format. If not supplied, the API will generate the id for you.

Bodyrequired

    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

Responses

OK

Schema
    stringstring

Authorization: Authorization

name: Authorizationtype: apiKeyin: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.apparyllis.com/v1/board/:id");
request.Headers.Add("Accept", "text");
request.Headers.Add("Authorization", "<Authorization>");
var content = new StringContent("{\n \"title\": \"string\",\n \"message\": \"string\",\n \"writtenBy\": \"string\",\n \"writtenFor\": \"string\",\n \"writtenAt\": 0,\n \"read\": true,\n \"supportMarkdown\": true\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.apparyllis.com
Auth
Parameters
— path
Body required
{
  "title": "string",
  "message": "string",
  "writtenBy": "string",
  "writtenFor": "string",
  "writtenAt": 0,
  "read": true,
  "supportMarkdown": true
}
ResponseClear

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