Write board message
POSThttps://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.
- application/json
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
- 200
- 400
- 404
OK
- text
- Schema
- Example (auto)
- Example
Schema
stringstring
"string"
"67d63acba3e170d9b68cb7f9"
BAD REQEST
NOT FOUND
Authorization: Authorization
name: Authorizationtype: apiKeyin: header
- 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.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());
ResponseClear