-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPOST_JSON_EXAMPLE.json
More file actions
53 lines (53 loc) · 1.47 KB
/
POST_JSON_EXAMPLE.json
File metadata and controls
53 lines (53 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"post_id": "uuid-of-scheduled-post",
"scheduled_date": "2025-10-06T15:30:00Z",
"timezone": "America/New_York",
"platforms": [
{
"platform_id": "telegram-channel-id",
"platform_name": "My Telegram Channel",
"platform_type": "telegram_channel"
},
{
"platform_id": "instagram-id",
"platform_name": "My Instagram",
"platform_type": "instagram"
}
],
"post_content": {
"media_files": [
{
"id": "media-1",
"name": "image.jpg",
"type": "image",
"size": 245678,
"url": "https://supabase-storage-url.com/image.jpg"
},
{
"id": "media-2",
"name": "video.mp4",
"type": "video",
"size": 5245678,
"url": "https://supabase-storage-url.com/video.mp4"
}
],
"text_post": {
"sender_profile": {
"profile_id": "character-uuid",
"avatar": "https://avatar-url.com/avatar.jpg",
"name": "John Doe",
"username": "@johndoe",
"role": "Content Creator"
},
"title": "Amazing Post Title",
"description": "This is the full post description with all the details about the content. It can be quite long and include multiple paragraphs.\n\nSecond paragraph here.",
"hashtags": [
"#marketing",
"#socialmedia",
"#contentcreation"
],
"seo_keywords": "marketing, social media, content strategy",
"cta": "Visit our website for more info!"
}
}
}