This endpoint may be used to get information of specific feed entries (posts, replies and shares) and modify them.
Gets a specific FeedEntry by it's ID (type has to be POST
or REPLY
).
Property | Type | Description |
---|---|---|
id | integer | The ID of the FeedEntry |
Returns a single FeedEntry object.
Creates a new FeedEntry with either the type POST
or REPLY
, depending on whether the
parent
parameter is present.
Requires authorization
Property | Type | Description |
---|---|---|
message | string | The message of this FeedEntry |
attachments | ?string[] | The attachments of this FeedEntry, passed as an array of base64 strings |
nsfw | ?boolean | Whether or not this FeedEntry contains adult content |
parent | ?integer | The parent FeedEntry to use, if present, the created FeedEntry object will have the type
REPLY |
Returns a single FeedEntry object.
Deletes a specific FeedEntry by it's ID (type has to be POST
or REPLY
).
Requires authorization
Property | Type | Description |
---|---|---|
id | integer | The ID of the FeedEntry |