Files
gitroomhq__postiz-agent/examples/post-with-comments.json
Nevo David ae99586c46 Initial commit: Postiz CLI (postiz-agent)
- Complete CLI for Postiz social media automation
- Support for 28+ platforms (Twitter/X, LinkedIn, Reddit, YouTube, TikTok, Instagram, etc.)
- Required date scheduling with schedule/draft modes
- Integration tools workflow for dynamic data fetching
- Platform-specific settings auto-detection
- Comprehensive documentation for AI agents

Features:
- posts:create - Create scheduled posts with media
- posts:list - List posts with date filtering
- posts:delete - Delete posts
- integrations:list - List connected integrations
- integrations:settings - Get platform settings and tools
- integrations:trigger - Fetch dynamic data (flairs, playlists, companies)
- upload - Upload media files

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 12:06:28 +07:00

56 lines
1.3 KiB
JSON

{
"type": "now",
"date": "2024-01-15T12:00:00Z",
"shortLink": true,
"tags": [],
"posts": [
{
"integration": {
"id": "your-integration-id-here"
},
"value": [
{
"content": "This is the main post content 🚀",
"image": [
{
"id": "img1",
"path": "https://example.com/main-image.jpg"
},
{
"id": "img2",
"path": "https://example.com/secondary-image.jpg"
}
]
},
{
"content": "This is the first comment with its own media 📸",
"image": [
{
"id": "img3",
"path": "https://example.com/comment1-image.jpg"
}
],
"delay": 5000
},
{
"content": "This is the second comment with different media 🎨",
"image": [
{
"id": "img4",
"path": "https://example.com/comment2-image1.jpg"
},
{
"id": "img5",
"path": "https://example.com/comment2-image2.jpg"
}
],
"delay": 10000
}
],
"settings": {
"__type": "EmptySettings"
}
}
]
}