Get Posts
Add New post on a channel
POST
https://api.zira.us/public/post
Payload example
{
"title":"Hello world",
"content": "This is my message",
"toChannelId": "123"
}
Example response
{
"data":"1253", // returns new post ID
}
Properties
Property | Required | Type | Example | Description |
---|---|---|---|---|
title | false | String | "Hello world" | post title |
content | true | String | "This is my message" | post content |
toChannelId | true | String | "456" | channel id (can be copied from the channel share menu) |
skipNotifications | false | Boolean | false | When true, new post will not followed by push notification/email |