@adaptive-ds/n8n-nodes-publer 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/nodes/Publer/openapi.json +486 -137
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -2,25 +2,17 @@
|
|
|
2
2
|
"openapi": "3.0.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Publer API",
|
|
5
|
-
"description": "Welcome to the **Publer API** collection!\n\nThis API enables developers, agencies, and marketing teams to automate social media workflows, integrate advanced scheduling tools, and manage multiple brands at scale—all from your own applications.\n\n---\n\n## What is the Publer API?\n\nThe Publer API is a modern, RESTful JSON interface designed for seamless social media automation. It lets you programmatically access and manage all core functions of the Publer platform, including:\n\n- **Publishing & Scheduling** \n Draft, schedule, auto-schedule, or instantly publish posts (including bulk and recurring content) across 13+ supported social platforms.\n \n- **Media Management** \n Upload, organize, and attach media—images, videos, GIFs, PDFs, and more. Apply watermarks and manage media libraries per workspace or account.\n \n- **Workspace & Collaboration** \n Manage teams, clients, and brands through isolated workspaces. Retrieve user profiles, permissions, and organize content by workspace.\n \n- **Advanced Features** \n Automate post actions (auto-share, follow-up comments, auto-delete), append branded signatures, use location tags, and customize posts with platform-specific features.\n \n\n---\n\n## Supported Social Networks\n\nPublish and manage content on:\n\n- Facebook, Instagram, Twitter/X, LinkedIn, Pinterest, YouTube, TikTok, Google Business Profile, WordPress, Telegram, Mastodon, Threads, and Bluesky.\n \n\n---\n\n## Core Capabilities\n\n- **Content Types:** \n Status updates, images, videos, reels, stories, polls, PDFs, links, carousels, events, offers, and more.\n \n- **Bulk Scheduling:** \n Schedule up to 500 posts in a single request for efficient multi-account planning.\n \n- **Media Options:** \n Organize Facebook albums, Pinterest boards, and apply account-specific watermarks.\n \n- **Branding & Protection:** \n Use signatures and watermarks to reinforce your brand and protect
|
|
5
|
+
"description": "Welcome to the **Publer API** collection!\n\nThis API enables developers, agencies, and marketing teams to automate social media workflows, integrate advanced scheduling tools, and manage multiple brands at scale—all from your own applications.\n\n---\n\n## What is the Publer API?\n\nThe Publer API is a modern, RESTful JSON interface designed for seamless social media automation. It lets you programmatically access and manage all core functions of the Publer platform, including:\n\n- **Publishing & Scheduling** \n Draft, schedule, auto-schedule, or instantly publish posts (including bulk and recurring content) across 13+ supported social platforms.\n \n- **Media Management** \n Upload, organize, and attach media—images, videos, GIFs, PDFs, and more. Apply watermarks and manage media libraries per workspace or account.\n \n- **Workspace & Collaboration** \n Manage teams, clients, and brands through isolated workspaces. Retrieve user profiles, permissions, and organize content by workspace.\n \n- **Advanced Features** \n Automate post actions (auto-share, follow-up comments, auto-delete), append branded signatures, use location tags, and customize posts with platform-specific features.\n \n\n---\n\n## Supported Social Networks\n\nPublish and manage content on:\n\n- Facebook, Instagram, Twitter/X, LinkedIn, Pinterest, YouTube, TikTok, Google Business Profile, WordPress, Telegram, Mastodon, Threads, and Bluesky.\n \n\n---\n\n## Core Capabilities\n\n- **Content Types:** \n Status updates, images, videos, reels, stories, polls, PDFs, links, carousels, events, offers, and more.\n \n- **Bulk Scheduling:** \n Schedule up to 500 posts in a single request for efficient multi-account planning.\n \n- **Media Options:** \n Organize Facebook albums, Pinterest boards, and apply account-specific watermarks.\n \n- **Branding & Protection:** \n Use signatures and watermarks to reinforce your brand and protect ...\n",
|
|
6
6
|
"version": "1.0.0"
|
|
7
7
|
},
|
|
8
8
|
"servers": [
|
|
9
9
|
{
|
|
10
|
-
"url": "
|
|
10
|
+
"url": "https://app.publer.com/api/v1"
|
|
11
11
|
}
|
|
12
12
|
],
|
|
13
|
-
"components": {
|
|
14
|
-
"securitySchemes": {
|
|
15
|
-
"apikeyAuth": {
|
|
16
|
-
"type": "http",
|
|
17
|
-
"scheme": "apikey"
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
13
|
"security": [
|
|
22
14
|
{
|
|
23
|
-
"
|
|
15
|
+
"bearerAuth": []
|
|
24
16
|
}
|
|
25
17
|
],
|
|
26
18
|
"tags": [
|
|
@@ -65,7 +57,7 @@
|
|
|
65
57
|
}
|
|
66
58
|
],
|
|
67
59
|
"paths": {
|
|
68
|
-
"/
|
|
60
|
+
"/users/me": {
|
|
69
61
|
"get": {
|
|
70
62
|
"tags": [
|
|
71
63
|
"USERS"
|
|
@@ -81,7 +73,7 @@
|
|
|
81
73
|
}
|
|
82
74
|
}
|
|
83
75
|
},
|
|
84
|
-
"/
|
|
76
|
+
"/workspaces": {
|
|
85
77
|
"get": {
|
|
86
78
|
"tags": [
|
|
87
79
|
"WORKSPACES"
|
|
@@ -97,7 +89,7 @@
|
|
|
97
89
|
}
|
|
98
90
|
}
|
|
99
91
|
},
|
|
100
|
-
"/
|
|
92
|
+
"/workspaces/{workspace_id}/signatures": {
|
|
101
93
|
"get": {
|
|
102
94
|
"tags": [
|
|
103
95
|
"WORKSPACES"
|
|
@@ -131,7 +123,7 @@
|
|
|
131
123
|
}
|
|
132
124
|
}
|
|
133
125
|
},
|
|
134
|
-
"/
|
|
126
|
+
"/workspaces/{workspace_id}/media_options": {
|
|
135
127
|
"get": {
|
|
136
128
|
"tags": [
|
|
137
129
|
"WORKSPACES"
|
|
@@ -165,12 +157,12 @@
|
|
|
165
157
|
}
|
|
166
158
|
}
|
|
167
159
|
},
|
|
168
|
-
"/
|
|
160
|
+
"/accounts": {
|
|
169
161
|
"get": {
|
|
170
162
|
"tags": [
|
|
171
163
|
"ACCOUNTS"
|
|
172
164
|
],
|
|
173
|
-
"summary": "Accounts",
|
|
165
|
+
"summary": "List Accounts",
|
|
174
166
|
"parameters": [
|
|
175
167
|
{
|
|
176
168
|
"name": "Publer-Workspace-Id",
|
|
@@ -178,20 +170,33 @@
|
|
|
178
170
|
"schema": {
|
|
179
171
|
"type": "string"
|
|
180
172
|
},
|
|
181
|
-
"example": "{{workspace_id}}"
|
|
173
|
+
"example": "{{workspace_id}}",
|
|
174
|
+
"required": true
|
|
182
175
|
}
|
|
183
176
|
],
|
|
184
177
|
"responses": {
|
|
185
178
|
"200": {
|
|
186
179
|
"description": "Successful response",
|
|
187
180
|
"content": {
|
|
188
|
-
"application/json": {
|
|
181
|
+
"application/json": {
|
|
182
|
+
"schema": {
|
|
183
|
+
"type": "object",
|
|
184
|
+
"properties": {
|
|
185
|
+
"accounts": {
|
|
186
|
+
"type": "array",
|
|
187
|
+
"items": {
|
|
188
|
+
"$ref": "#/components/schemas/Account"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
189
194
|
}
|
|
190
195
|
}
|
|
191
196
|
}
|
|
192
197
|
}
|
|
193
198
|
},
|
|
194
|
-
"/
|
|
199
|
+
"/media": {
|
|
195
200
|
"get": {
|
|
196
201
|
"tags": [
|
|
197
202
|
"MEDIA"
|
|
@@ -204,23 +209,68 @@
|
|
|
204
209
|
"schema": {
|
|
205
210
|
"type": "string"
|
|
206
211
|
},
|
|
207
|
-
"example": "{{workspace_id}}"
|
|
212
|
+
"example": "{{workspace_id}}",
|
|
213
|
+
"required": true
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "ids[]",
|
|
217
|
+
"in": "query",
|
|
218
|
+
"schema": {
|
|
219
|
+
"type": "array",
|
|
220
|
+
"items": {
|
|
221
|
+
"type": "string"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"example": ["647a0edddb2797b89044e2c1"]
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"name": "page",
|
|
228
|
+
"in": "query",
|
|
229
|
+
"schema": {
|
|
230
|
+
"type": "integer"
|
|
231
|
+
},
|
|
232
|
+
"example": 0
|
|
208
233
|
},
|
|
209
234
|
{
|
|
210
235
|
"name": "types[]",
|
|
211
236
|
"in": "query",
|
|
212
237
|
"schema": {
|
|
213
|
-
"type": "
|
|
238
|
+
"type": "array",
|
|
239
|
+
"items": {
|
|
240
|
+
"type": "string",
|
|
241
|
+
"enum": ["photo", "video", "gif"]
|
|
242
|
+
}
|
|
214
243
|
},
|
|
215
|
-
"example": "photo"
|
|
244
|
+
"example": ["photo"]
|
|
216
245
|
},
|
|
217
246
|
{
|
|
218
247
|
"name": "used[]",
|
|
219
248
|
"in": "query",
|
|
220
249
|
"schema": {
|
|
221
|
-
"type": "
|
|
250
|
+
"type": "array",
|
|
251
|
+
"items": {
|
|
252
|
+
"type": "boolean"
|
|
253
|
+
}
|
|
222
254
|
},
|
|
223
|
-
"example":
|
|
255
|
+
"example": [false]
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "source[]",
|
|
259
|
+
"in": "query",
|
|
260
|
+
"schema": {
|
|
261
|
+
"type": "array",
|
|
262
|
+
"items": {
|
|
263
|
+
"type": "string",
|
|
264
|
+
"enum": ["canva", "vista", "postnitro", "contentdrips", "openai", "favorites", "upload"]
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "search",
|
|
270
|
+
"in": "query",
|
|
271
|
+
"schema": {
|
|
272
|
+
"type": "string"
|
|
273
|
+
}
|
|
224
274
|
}
|
|
225
275
|
],
|
|
226
276
|
"responses": {
|
|
@@ -231,9 +281,7 @@
|
|
|
231
281
|
}
|
|
232
282
|
}
|
|
233
283
|
}
|
|
234
|
-
}
|
|
235
|
-
},
|
|
236
|
-
"/api/v1/media/": {
|
|
284
|
+
},
|
|
237
285
|
"post": {
|
|
238
286
|
"tags": [
|
|
239
287
|
"MEDIA"
|
|
@@ -251,11 +299,11 @@
|
|
|
251
299
|
},
|
|
252
300
|
"direct_upload": {
|
|
253
301
|
"type": "boolean",
|
|
254
|
-
"example":
|
|
302
|
+
"example": false
|
|
255
303
|
},
|
|
256
304
|
"in_library": {
|
|
257
305
|
"type": "boolean",
|
|
258
|
-
"example":
|
|
306
|
+
"example": true
|
|
259
307
|
}
|
|
260
308
|
}
|
|
261
309
|
}
|
|
@@ -269,7 +317,8 @@
|
|
|
269
317
|
"schema": {
|
|
270
318
|
"type": "string"
|
|
271
319
|
},
|
|
272
|
-
"example": "{{workspace_id}}"
|
|
320
|
+
"example": "{{workspace_id}}",
|
|
321
|
+
"required": true
|
|
273
322
|
}
|
|
274
323
|
],
|
|
275
324
|
"responses": {
|
|
@@ -282,7 +331,7 @@
|
|
|
282
331
|
}
|
|
283
332
|
}
|
|
284
333
|
},
|
|
285
|
-
"/
|
|
334
|
+
"/media/from-url": {
|
|
286
335
|
"post": {
|
|
287
336
|
"tags": [
|
|
288
337
|
"MEDIA"
|
|
@@ -351,7 +400,8 @@
|
|
|
351
400
|
"schema": {
|
|
352
401
|
"type": "string"
|
|
353
402
|
},
|
|
354
|
-
"example": "{{workspace_id}}"
|
|
403
|
+
"example": "{{workspace_id}}",
|
|
404
|
+
"required": true
|
|
355
405
|
}
|
|
356
406
|
],
|
|
357
407
|
"responses": {
|
|
@@ -364,44 +414,127 @@
|
|
|
364
414
|
}
|
|
365
415
|
}
|
|
366
416
|
},
|
|
367
|
-
"/
|
|
417
|
+
"/posts/schedule": {
|
|
368
418
|
"post": {
|
|
369
419
|
"tags": [
|
|
370
420
|
"POSTS > CONTENT TYPES"
|
|
371
421
|
],
|
|
372
|
-
"summary": "
|
|
422
|
+
"summary": "Schedule post",
|
|
423
|
+
"description": "Schedule a post. Supports text, photo, video, link, carousel, story, reel, and gif content types.",
|
|
373
424
|
"requestBody": {
|
|
374
425
|
"content": {
|
|
375
426
|
"application/json": {
|
|
376
427
|
"schema": {
|
|
377
428
|
"type": "object",
|
|
378
|
-
"
|
|
429
|
+
"required": ["bulk"],
|
|
430
|
+
"properties": {
|
|
379
431
|
"bulk": {
|
|
380
|
-
"
|
|
381
|
-
"
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
"
|
|
398
|
-
"
|
|
399
|
-
"
|
|
432
|
+
"type": "object",
|
|
433
|
+
"required": ["state", "posts"],
|
|
434
|
+
"properties": {
|
|
435
|
+
"state": {
|
|
436
|
+
"type": "string",
|
|
437
|
+
"enum": ["scheduled", "draft"],
|
|
438
|
+
"description": "Post state",
|
|
439
|
+
"example": "scheduled"
|
|
440
|
+
},
|
|
441
|
+
"posts": {
|
|
442
|
+
"type": "array",
|
|
443
|
+
"description": "Posts to create",
|
|
444
|
+
"items": {
|
|
445
|
+
"type": "object",
|
|
446
|
+
"required": ["networks", "accounts"],
|
|
447
|
+
"properties": {
|
|
448
|
+
"networks": {
|
|
449
|
+
"type": "object",
|
|
450
|
+
"description": "Network-specific post content",
|
|
451
|
+
"additionalProperties": {
|
|
452
|
+
"type": "object",
|
|
453
|
+
"description": "Per-network post configuration",
|
|
454
|
+
"properties": {
|
|
455
|
+
"type": {
|
|
456
|
+
"type": "string",
|
|
457
|
+
"enum": ["status", "photo", "video", "link", "carousel", "story", "reel", "gif"],
|
|
458
|
+
"description": "Content type: status (text only), photo, video, link, carousel, story, reel, or gif",
|
|
459
|
+
"example": "status"
|
|
460
|
+
},
|
|
461
|
+
"text": {
|
|
462
|
+
"type": "string",
|
|
463
|
+
"description": "Post text content",
|
|
464
|
+
"example": "Hello world!"
|
|
465
|
+
},
|
|
466
|
+
"media": {
|
|
467
|
+
"type": "array",
|
|
468
|
+
"description": "Media attachments (required for photo, video, carousel, story, reel, gif types)",
|
|
469
|
+
"items": {
|
|
470
|
+
"type": "object",
|
|
471
|
+
"properties": {
|
|
472
|
+
"id": {
|
|
473
|
+
"type": "string",
|
|
474
|
+
"description": "Media asset ID from upload"
|
|
475
|
+
},
|
|
476
|
+
"type": {
|
|
477
|
+
"type": "string",
|
|
478
|
+
"enum": ["photo", "video", "gif"],
|
|
479
|
+
"description": "Media type"
|
|
480
|
+
},
|
|
481
|
+
"caption": {
|
|
482
|
+
"type": "string",
|
|
483
|
+
"description": "Media caption"
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
},
|
|
488
|
+
"url": {
|
|
489
|
+
"type": "string",
|
|
490
|
+
"description": "URL for link posts (required when type=link)",
|
|
491
|
+
"example": "https://publer.com"
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
},
|
|
496
|
+
"accounts": {
|
|
497
|
+
"type": "array",
|
|
498
|
+
"description": "Target social media accounts",
|
|
499
|
+
"items": {
|
|
500
|
+
"type": "object",
|
|
501
|
+
"required": ["id"],
|
|
502
|
+
"properties": {
|
|
503
|
+
"id": {
|
|
504
|
+
"type": "string",
|
|
505
|
+
"description": "Account ID",
|
|
506
|
+
"example": "647a0edddb2797b89044e2c1"
|
|
507
|
+
},
|
|
508
|
+
"scheduled_at": {
|
|
509
|
+
"type": "string",
|
|
510
|
+
"description": "ISO 8601 scheduled time",
|
|
511
|
+
"example": "2025-06-14T10:21+02:00"
|
|
512
|
+
},
|
|
513
|
+
"location": {
|
|
514
|
+
"type": "object",
|
|
515
|
+
"description": "Location for Facebook/Instagram",
|
|
516
|
+
"properties": {
|
|
517
|
+
"id": {
|
|
518
|
+
"type": "string",
|
|
519
|
+
"description": "Location ID"
|
|
520
|
+
},
|
|
521
|
+
"name": {
|
|
522
|
+
"type": "string",
|
|
523
|
+
"description": "Location name"
|
|
524
|
+
},
|
|
525
|
+
"address": {
|
|
526
|
+
"type": "string",
|
|
527
|
+
"description": "Location address"
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
}
|
|
400
533
|
}
|
|
401
534
|
}
|
|
402
|
-
|
|
535
|
+
}
|
|
403
536
|
}
|
|
404
|
-
|
|
537
|
+
}
|
|
405
538
|
}
|
|
406
539
|
}
|
|
407
540
|
}
|
|
@@ -415,7 +548,8 @@
|
|
|
415
548
|
"schema": {
|
|
416
549
|
"type": "string"
|
|
417
550
|
},
|
|
418
|
-
"example": "{{workspace_id}}"
|
|
551
|
+
"example": "{{workspace_id}}",
|
|
552
|
+
"required": true
|
|
419
553
|
}
|
|
420
554
|
],
|
|
421
555
|
"responses": {
|
|
@@ -428,36 +562,109 @@
|
|
|
428
562
|
}
|
|
429
563
|
}
|
|
430
564
|
},
|
|
431
|
-
"/
|
|
565
|
+
"/posts/schedule/publish": {
|
|
432
566
|
"post": {
|
|
433
567
|
"tags": [
|
|
434
568
|
"POSTS > PUBLISHING METHODS"
|
|
435
569
|
],
|
|
436
|
-
"summary": "Publish",
|
|
570
|
+
"summary": "Publish immediately",
|
|
571
|
+
"description": "Publish a post immediately. Supports text, photo, video, link, carousel, story, reel, and gif content types.",
|
|
437
572
|
"requestBody": {
|
|
438
573
|
"content": {
|
|
439
574
|
"application/json": {
|
|
440
575
|
"schema": {
|
|
441
576
|
"type": "object",
|
|
442
|
-
"
|
|
577
|
+
"required": ["bulk"],
|
|
578
|
+
"properties": {
|
|
443
579
|
"bulk": {
|
|
444
|
-
"
|
|
445
|
-
"
|
|
446
|
-
"
|
|
447
|
-
{
|
|
448
|
-
"
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
"
|
|
455
|
-
|
|
456
|
-
|
|
580
|
+
"type": "object",
|
|
581
|
+
"required": ["state", "posts"],
|
|
582
|
+
"properties": {
|
|
583
|
+
"state": {
|
|
584
|
+
"type": "string",
|
|
585
|
+
"enum": ["published"],
|
|
586
|
+
"description": "Must be 'published' for immediate publishing",
|
|
587
|
+
"example": "published"
|
|
588
|
+
},
|
|
589
|
+
"url": {
|
|
590
|
+
"type": "string",
|
|
591
|
+
"description": "Must be 'publish'",
|
|
592
|
+
"example": "publish"
|
|
593
|
+
},
|
|
594
|
+
"posts": {
|
|
595
|
+
"type": "array",
|
|
596
|
+
"description": "Posts to publish",
|
|
597
|
+
"items": {
|
|
598
|
+
"type": "object",
|
|
599
|
+
"required": ["networks", "accounts"],
|
|
600
|
+
"properties": {
|
|
601
|
+
"networks": {
|
|
602
|
+
"type": "object",
|
|
603
|
+
"description": "Network-specific post content",
|
|
604
|
+
"additionalProperties": {
|
|
605
|
+
"type": "object",
|
|
606
|
+
"description": "Per-network post configuration",
|
|
607
|
+
"properties": {
|
|
608
|
+
"type": {
|
|
609
|
+
"type": "string",
|
|
610
|
+
"enum": ["status", "photo", "video", "link", "carousel", "story", "reel", "gif"],
|
|
611
|
+
"description": "Content type: status (text only), photo, video, link, carousel, story, reel, or gif",
|
|
612
|
+
"example": "status"
|
|
613
|
+
},
|
|
614
|
+
"text": {
|
|
615
|
+
"type": "string",
|
|
616
|
+
"description": "Post text content",
|
|
617
|
+
"example": "Hello world!"
|
|
618
|
+
},
|
|
619
|
+
"media": {
|
|
620
|
+
"type": "array",
|
|
621
|
+
"description": "Media attachments (required for photo, video, carousel, story, reel, gif types)",
|
|
622
|
+
"items": {
|
|
623
|
+
"type": "object",
|
|
624
|
+
"properties": {
|
|
625
|
+
"id": {
|
|
626
|
+
"type": "string",
|
|
627
|
+
"description": "Media asset ID from upload"
|
|
628
|
+
},
|
|
629
|
+
"type": {
|
|
630
|
+
"type": "string",
|
|
631
|
+
"enum": ["photo", "video", "gif"],
|
|
632
|
+
"description": "Media type"
|
|
633
|
+
},
|
|
634
|
+
"caption": {
|
|
635
|
+
"type": "string",
|
|
636
|
+
"description": "Media caption"
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
"url": {
|
|
642
|
+
"type": "string",
|
|
643
|
+
"description": "URL for link posts (required when type=link)",
|
|
644
|
+
"example": "https://publer.com"
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
"accounts": {
|
|
650
|
+
"type": "array",
|
|
651
|
+
"description": "Target social media accounts",
|
|
652
|
+
"items": {
|
|
653
|
+
"type": "object",
|
|
654
|
+
"required": ["id"],
|
|
655
|
+
"properties": {
|
|
656
|
+
"id": {
|
|
657
|
+
"type": "string",
|
|
658
|
+
"description": "Account ID",
|
|
659
|
+
"example": "647a0edddb2797b89044e2c1"
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
}
|
|
457
664
|
}
|
|
458
|
-
|
|
665
|
+
}
|
|
459
666
|
}
|
|
460
|
-
|
|
667
|
+
}
|
|
461
668
|
}
|
|
462
669
|
}
|
|
463
670
|
}
|
|
@@ -471,7 +678,8 @@
|
|
|
471
678
|
"schema": {
|
|
472
679
|
"type": "string"
|
|
473
680
|
},
|
|
474
|
-
"example": "{{workspace_id}}"
|
|
681
|
+
"example": "{{workspace_id}}",
|
|
682
|
+
"required": true
|
|
475
683
|
}
|
|
476
684
|
],
|
|
477
685
|
"responses": {
|
|
@@ -484,12 +692,12 @@
|
|
|
484
692
|
}
|
|
485
693
|
}
|
|
486
694
|
},
|
|
487
|
-
"/
|
|
695
|
+
"/posts": {
|
|
488
696
|
"get": {
|
|
489
697
|
"tags": [
|
|
490
698
|
"POSTS"
|
|
491
699
|
],
|
|
492
|
-
"summary": "
|
|
700
|
+
"summary": "List Posts",
|
|
493
701
|
"parameters": [
|
|
494
702
|
{
|
|
495
703
|
"name": "Publer-Workspace-Id",
|
|
@@ -497,23 +705,87 @@
|
|
|
497
705
|
"schema": {
|
|
498
706
|
"type": "string"
|
|
499
707
|
},
|
|
500
|
-
"example": "{{workspace_id}}"
|
|
708
|
+
"example": "{{workspace_id}}",
|
|
709
|
+
"required": true
|
|
501
710
|
},
|
|
502
711
|
{
|
|
503
712
|
"name": "state",
|
|
504
713
|
"in": "query",
|
|
505
714
|
"schema": {
|
|
506
|
-
"type": "string"
|
|
715
|
+
"type": "string",
|
|
716
|
+
"enum": ["all", "scheduled", "scheduled_approved", "scheduled_pending", "scheduled_declined", "scheduled_reauth", "scheduled_locked", "published", "published_posted", "published_deleted", "published_hidden", "draft", "draft_dated", "draft_undated", "draft_private", "draft_public", "failed", "recycling", "recycling_active", "recycling_paused", "recycling_expired", "recycling_failed", "recycling_pending", "recycling_declined", "recycling_reauth", "recycling_locked", "recurring"]
|
|
507
717
|
},
|
|
508
718
|
"example": "scheduled"
|
|
509
719
|
},
|
|
720
|
+
{
|
|
721
|
+
"name": "state[]",
|
|
722
|
+
"in": "query",
|
|
723
|
+
"schema": {
|
|
724
|
+
"type": "array",
|
|
725
|
+
"items": {
|
|
726
|
+
"type": "string",
|
|
727
|
+
"enum": ["all", "scheduled", "scheduled_approved", "scheduled_pending", "scheduled_declined", "scheduled_reauth", "scheduled_locked", "published", "published_posted", "published_deleted", "published_hidden", "draft", "draft_dated", "draft_undated", "draft_private", "draft_public", "failed", "recycling", "recycling_active", "recycling_paused", "recycling_expired", "recycling_failed", "recycling_pending", "recycling_declined", "recycling_reauth", "recycling_locked", "recurring"]
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"name": "from",
|
|
733
|
+
"in": "query",
|
|
734
|
+
"schema": {
|
|
735
|
+
"type": "string",
|
|
736
|
+
"format": "date"
|
|
737
|
+
},
|
|
738
|
+
"example": "2025-01-01"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"name": "to",
|
|
742
|
+
"in": "query",
|
|
743
|
+
"schema": {
|
|
744
|
+
"type": "string",
|
|
745
|
+
"format": "date"
|
|
746
|
+
},
|
|
747
|
+
"example": "2025-12-31"
|
|
748
|
+
},
|
|
510
749
|
{
|
|
511
750
|
"name": "page",
|
|
512
751
|
"in": "query",
|
|
513
752
|
"schema": {
|
|
514
753
|
"type": "integer"
|
|
515
754
|
},
|
|
516
|
-
"example":
|
|
755
|
+
"example": 0
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"name": "account_ids[]",
|
|
759
|
+
"in": "query",
|
|
760
|
+
"schema": {
|
|
761
|
+
"type": "array",
|
|
762
|
+
"items": {
|
|
763
|
+
"type": "string"
|
|
764
|
+
}
|
|
765
|
+
},
|
|
766
|
+
"example": ["63c675b54e299e9cf2b667ea"]
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"name": "query",
|
|
770
|
+
"in": "query",
|
|
771
|
+
"schema": {
|
|
772
|
+
"type": "string"
|
|
773
|
+
}
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"name": "postType",
|
|
777
|
+
"in": "query",
|
|
778
|
+
"schema": {
|
|
779
|
+
"type": "string",
|
|
780
|
+
"enum": ["status", "link", "photo", "gif", "video", "reel", "story", "short", "poll", "document", "carousel", "article"]
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"name": "member_id",
|
|
785
|
+
"in": "query",
|
|
786
|
+
"schema": {
|
|
787
|
+
"type": "string"
|
|
788
|
+
}
|
|
517
789
|
}
|
|
518
790
|
],
|
|
519
791
|
"responses": {
|
|
@@ -537,15 +809,19 @@
|
|
|
537
809
|
"schema": {
|
|
538
810
|
"type": "string"
|
|
539
811
|
},
|
|
540
|
-
"example": "{{workspace_id}}"
|
|
812
|
+
"example": "{{workspace_id}}",
|
|
813
|
+
"required": true
|
|
541
814
|
},
|
|
542
815
|
{
|
|
543
816
|
"name": "post_ids[]",
|
|
544
817
|
"in": "query",
|
|
545
818
|
"schema": {
|
|
546
|
-
"type": "
|
|
819
|
+
"type": "array",
|
|
820
|
+
"items": {
|
|
821
|
+
"type": "string"
|
|
822
|
+
}
|
|
547
823
|
},
|
|
548
|
-
"example": "684945796a88bf9baa9c182c"
|
|
824
|
+
"example": ["684945796a88bf9baa9c182c"]
|
|
549
825
|
}
|
|
550
826
|
],
|
|
551
827
|
"responses": {
|
|
@@ -558,7 +834,7 @@
|
|
|
558
834
|
}
|
|
559
835
|
}
|
|
560
836
|
},
|
|
561
|
-
"/
|
|
837
|
+
"/posts/links": {
|
|
562
838
|
"post": {
|
|
563
839
|
"tags": [
|
|
564
840
|
"POSTS"
|
|
@@ -586,35 +862,29 @@
|
|
|
586
862
|
}
|
|
587
863
|
}
|
|
588
864
|
},
|
|
589
|
-
"/
|
|
865
|
+
"/posts/{post_id}": {
|
|
590
866
|
"put": {
|
|
591
867
|
"tags": [
|
|
592
868
|
"POSTS"
|
|
593
869
|
],
|
|
594
870
|
"summary": "Update post",
|
|
595
|
-
"requestBody": {
|
|
596
|
-
"content": {
|
|
597
|
-
"application/json": {
|
|
598
|
-
"schema": {
|
|
599
|
-
"type": "object",
|
|
600
|
-
"example": {
|
|
601
|
-
"post": {
|
|
602
|
-
"text": "Status Update UPDATED",
|
|
603
|
-
"title": null
|
|
604
|
-
}
|
|
605
|
-
}
|
|
606
|
-
}
|
|
607
|
-
}
|
|
608
|
-
}
|
|
609
|
-
},
|
|
610
871
|
"parameters": [
|
|
872
|
+
{
|
|
873
|
+
"name": "post_id",
|
|
874
|
+
"in": "path",
|
|
875
|
+
"schema": {
|
|
876
|
+
"type": "string"
|
|
877
|
+
},
|
|
878
|
+
"required": true
|
|
879
|
+
},
|
|
611
880
|
{
|
|
612
881
|
"name": "Publer-Workspace-Id",
|
|
613
882
|
"in": "header",
|
|
614
883
|
"schema": {
|
|
615
884
|
"type": "string"
|
|
616
885
|
},
|
|
617
|
-
"example": "{{workspace_id}}"
|
|
886
|
+
"example": "{{workspace_id}}",
|
|
887
|
+
"required": true
|
|
618
888
|
}
|
|
619
889
|
],
|
|
620
890
|
"responses": {
|
|
@@ -627,20 +897,29 @@
|
|
|
627
897
|
}
|
|
628
898
|
}
|
|
629
899
|
},
|
|
630
|
-
"/
|
|
900
|
+
"/job_status/{job_id}": {
|
|
631
901
|
"get": {
|
|
632
902
|
"tags": [
|
|
633
903
|
"JOB STATUS"
|
|
634
904
|
],
|
|
635
905
|
"summary": "Job status",
|
|
636
906
|
"parameters": [
|
|
907
|
+
{
|
|
908
|
+
"name": "job_id",
|
|
909
|
+
"in": "path",
|
|
910
|
+
"schema": {
|
|
911
|
+
"type": "string"
|
|
912
|
+
},
|
|
913
|
+
"required": true
|
|
914
|
+
},
|
|
637
915
|
{
|
|
638
916
|
"name": "Publer-Workspace-Id",
|
|
639
917
|
"in": "header",
|
|
640
918
|
"schema": {
|
|
641
919
|
"type": "string"
|
|
642
920
|
},
|
|
643
|
-
"example": "{{workspace_id}}"
|
|
921
|
+
"example": "{{workspace_id}}",
|
|
922
|
+
"required": true
|
|
644
923
|
}
|
|
645
924
|
],
|
|
646
925
|
"responses": {
|
|
@@ -653,7 +932,7 @@
|
|
|
653
932
|
}
|
|
654
933
|
}
|
|
655
934
|
},
|
|
656
|
-
"/
|
|
935
|
+
"/locations/instagram": {
|
|
657
936
|
"get": {
|
|
658
937
|
"tags": [
|
|
659
938
|
"LOCATIONS"
|
|
@@ -666,7 +945,8 @@
|
|
|
666
945
|
"schema": {
|
|
667
946
|
"type": "string"
|
|
668
947
|
},
|
|
669
|
-
"example": "{{workspace_id}}"
|
|
948
|
+
"example": "{{workspace_id}}",
|
|
949
|
+
"required": true
|
|
670
950
|
},
|
|
671
951
|
{
|
|
672
952
|
"name": "q",
|
|
@@ -674,7 +954,7 @@
|
|
|
674
954
|
"schema": {
|
|
675
955
|
"type": "string"
|
|
676
956
|
},
|
|
677
|
-
"example": "Tirana
|
|
957
|
+
"example": "Tirana"
|
|
678
958
|
}
|
|
679
959
|
],
|
|
680
960
|
"responses": {
|
|
@@ -687,7 +967,7 @@
|
|
|
687
967
|
}
|
|
688
968
|
}
|
|
689
969
|
},
|
|
690
|
-
"/
|
|
970
|
+
"/locations/facebook": {
|
|
691
971
|
"get": {
|
|
692
972
|
"tags": [
|
|
693
973
|
"LOCATIONS"
|
|
@@ -700,7 +980,8 @@
|
|
|
700
980
|
"schema": {
|
|
701
981
|
"type": "string"
|
|
702
982
|
},
|
|
703
|
-
"example": "{{workspace_id}}"
|
|
983
|
+
"example": "{{workspace_id}}",
|
|
984
|
+
"required": true
|
|
704
985
|
},
|
|
705
986
|
{
|
|
706
987
|
"name": "q",
|
|
@@ -708,7 +989,7 @@
|
|
|
708
989
|
"schema": {
|
|
709
990
|
"type": "string"
|
|
710
991
|
},
|
|
711
|
-
"example": "Tirana
|
|
992
|
+
"example": "Tirana"
|
|
712
993
|
}
|
|
713
994
|
],
|
|
714
995
|
"responses": {
|
|
@@ -721,7 +1002,7 @@
|
|
|
721
1002
|
}
|
|
722
1003
|
}
|
|
723
1004
|
},
|
|
724
|
-
"/
|
|
1005
|
+
"/locations/threads": {
|
|
725
1006
|
"get": {
|
|
726
1007
|
"tags": [
|
|
727
1008
|
"LOCATIONS"
|
|
@@ -734,7 +1015,8 @@
|
|
|
734
1015
|
"schema": {
|
|
735
1016
|
"type": "string"
|
|
736
1017
|
},
|
|
737
|
-
"example": "{{workspace_id}}"
|
|
1018
|
+
"example": "{{workspace_id}}",
|
|
1019
|
+
"required": true
|
|
738
1020
|
},
|
|
739
1021
|
{
|
|
740
1022
|
"name": "q",
|
|
@@ -742,7 +1024,7 @@
|
|
|
742
1024
|
"schema": {
|
|
743
1025
|
"type": "string"
|
|
744
1026
|
},
|
|
745
|
-
"example": "Tirana
|
|
1027
|
+
"example": "Tirana"
|
|
746
1028
|
}
|
|
747
1029
|
],
|
|
748
1030
|
"responses": {
|
|
@@ -755,7 +1037,7 @@
|
|
|
755
1037
|
}
|
|
756
1038
|
}
|
|
757
1039
|
},
|
|
758
|
-
"/
|
|
1040
|
+
"/analytics/charts": {
|
|
759
1041
|
"get": {
|
|
760
1042
|
"tags": [
|
|
761
1043
|
"ANALYTICS"
|
|
@@ -768,7 +1050,8 @@
|
|
|
768
1050
|
"schema": {
|
|
769
1051
|
"type": "string"
|
|
770
1052
|
},
|
|
771
|
-
"example": "{{workspace_id}}"
|
|
1053
|
+
"example": "{{workspace_id}}",
|
|
1054
|
+
"required": true
|
|
772
1055
|
}
|
|
773
1056
|
],
|
|
774
1057
|
"responses": {
|
|
@@ -781,7 +1064,7 @@
|
|
|
781
1064
|
}
|
|
782
1065
|
}
|
|
783
1066
|
},
|
|
784
|
-
"/
|
|
1067
|
+
"/analytics/{account_id}/chart_data": {
|
|
785
1068
|
"get": {
|
|
786
1069
|
"tags": [
|
|
787
1070
|
"ANALYTICS"
|
|
@@ -794,7 +1077,8 @@
|
|
|
794
1077
|
"schema": {
|
|
795
1078
|
"type": "string"
|
|
796
1079
|
},
|
|
797
|
-
"example": "{{workspace_id}}"
|
|
1080
|
+
"example": "{{workspace_id}}",
|
|
1081
|
+
"required": true
|
|
798
1082
|
},
|
|
799
1083
|
{
|
|
800
1084
|
"name": "from",
|
|
@@ -816,9 +1100,12 @@
|
|
|
816
1100
|
"name": "chart_ids[]",
|
|
817
1101
|
"in": "query",
|
|
818
1102
|
"schema": {
|
|
819
|
-
"type": "
|
|
1103
|
+
"type": "array",
|
|
1104
|
+
"items": {
|
|
1105
|
+
"type": "string"
|
|
1106
|
+
}
|
|
820
1107
|
},
|
|
821
|
-
"example": "followers"
|
|
1108
|
+
"example": ["followers"]
|
|
822
1109
|
},
|
|
823
1110
|
{
|
|
824
1111
|
"name": "account_id",
|
|
@@ -839,7 +1126,7 @@
|
|
|
839
1126
|
}
|
|
840
1127
|
}
|
|
841
1128
|
},
|
|
842
|
-
"/
|
|
1129
|
+
"/analytics/{account_id}/post_insights": {
|
|
843
1130
|
"get": {
|
|
844
1131
|
"tags": [
|
|
845
1132
|
"ANALYTICS"
|
|
@@ -852,7 +1139,8 @@
|
|
|
852
1139
|
"schema": {
|
|
853
1140
|
"type": "string"
|
|
854
1141
|
},
|
|
855
|
-
"example": "{{workspace_id}}"
|
|
1142
|
+
"example": "{{workspace_id}}",
|
|
1143
|
+
"required": true
|
|
856
1144
|
},
|
|
857
1145
|
{
|
|
858
1146
|
"name": "from",
|
|
@@ -876,7 +1164,7 @@
|
|
|
876
1164
|
"schema": {
|
|
877
1165
|
"type": "integer"
|
|
878
1166
|
},
|
|
879
|
-
"example":
|
|
1167
|
+
"example": 0
|
|
880
1168
|
},
|
|
881
1169
|
{
|
|
882
1170
|
"name": "account_id",
|
|
@@ -897,7 +1185,7 @@
|
|
|
897
1185
|
}
|
|
898
1186
|
}
|
|
899
1187
|
},
|
|
900
|
-
"/
|
|
1188
|
+
"/analytics/{account_id}/hashtag_insights": {
|
|
901
1189
|
"get": {
|
|
902
1190
|
"tags": [
|
|
903
1191
|
"ANALYTICS"
|
|
@@ -910,7 +1198,8 @@
|
|
|
910
1198
|
"schema": {
|
|
911
1199
|
"type": "string"
|
|
912
1200
|
},
|
|
913
|
-
"example": "{{workspace_id}}"
|
|
1201
|
+
"example": "{{workspace_id}}",
|
|
1202
|
+
"required": true
|
|
914
1203
|
},
|
|
915
1204
|
{
|
|
916
1205
|
"name": "from",
|
|
@@ -947,7 +1236,7 @@
|
|
|
947
1236
|
}
|
|
948
1237
|
}
|
|
949
1238
|
},
|
|
950
|
-
"/
|
|
1239
|
+
"/analytics/{account_id}/hashtag_performing_posts": {
|
|
951
1240
|
"get": {
|
|
952
1241
|
"tags": [
|
|
953
1242
|
"ANALYTICS"
|
|
@@ -960,7 +1249,8 @@
|
|
|
960
1249
|
"schema": {
|
|
961
1250
|
"type": "string"
|
|
962
1251
|
},
|
|
963
|
-
"example": "{{workspace_id}}"
|
|
1252
|
+
"example": "{{workspace_id}}",
|
|
1253
|
+
"required": true
|
|
964
1254
|
},
|
|
965
1255
|
{
|
|
966
1256
|
"name": "hashtag",
|
|
@@ -1006,7 +1296,7 @@
|
|
|
1006
1296
|
}
|
|
1007
1297
|
}
|
|
1008
1298
|
},
|
|
1009
|
-
"/
|
|
1299
|
+
"/analytics/{account_id}/best_times": {
|
|
1010
1300
|
"get": {
|
|
1011
1301
|
"tags": [
|
|
1012
1302
|
"ANALYTICS"
|
|
@@ -1019,7 +1309,8 @@
|
|
|
1019
1309
|
"schema": {
|
|
1020
1310
|
"type": "string"
|
|
1021
1311
|
},
|
|
1022
|
-
"example": "{{workspace_id}}"
|
|
1312
|
+
"example": "{{workspace_id}}",
|
|
1313
|
+
"required": true
|
|
1023
1314
|
},
|
|
1024
1315
|
{
|
|
1025
1316
|
"name": "from",
|
|
@@ -1056,7 +1347,7 @@
|
|
|
1056
1347
|
}
|
|
1057
1348
|
}
|
|
1058
1349
|
},
|
|
1059
|
-
"/
|
|
1350
|
+
"/analytics/members": {
|
|
1060
1351
|
"get": {
|
|
1061
1352
|
"tags": [
|
|
1062
1353
|
"ANALYTICS"
|
|
@@ -1069,7 +1360,8 @@
|
|
|
1069
1360
|
"schema": {
|
|
1070
1361
|
"type": "string"
|
|
1071
1362
|
},
|
|
1072
|
-
"example": "{{workspace_id}}"
|
|
1363
|
+
"example": "{{workspace_id}}",
|
|
1364
|
+
"required": true
|
|
1073
1365
|
},
|
|
1074
1366
|
{
|
|
1075
1367
|
"name": "from",
|
|
@@ -1098,7 +1390,7 @@
|
|
|
1098
1390
|
}
|
|
1099
1391
|
}
|
|
1100
1392
|
},
|
|
1101
|
-
"/
|
|
1393
|
+
"/competitors": {
|
|
1102
1394
|
"get": {
|
|
1103
1395
|
"tags": [
|
|
1104
1396
|
"ANALYTICS"
|
|
@@ -1111,7 +1403,8 @@
|
|
|
1111
1403
|
"schema": {
|
|
1112
1404
|
"type": "string"
|
|
1113
1405
|
},
|
|
1114
|
-
"example": "{{workspace_id}}"
|
|
1406
|
+
"example": "{{workspace_id}}",
|
|
1407
|
+
"required": true
|
|
1115
1408
|
}
|
|
1116
1409
|
],
|
|
1117
1410
|
"responses": {
|
|
@@ -1124,20 +1417,29 @@
|
|
|
1124
1417
|
}
|
|
1125
1418
|
}
|
|
1126
1419
|
},
|
|
1127
|
-
"/
|
|
1420
|
+
"/competitors/{competitor_id}/analytics": {
|
|
1128
1421
|
"get": {
|
|
1129
1422
|
"tags": [
|
|
1130
1423
|
"ANALYTICS"
|
|
1131
1424
|
],
|
|
1132
1425
|
"summary": "Competitors analytics",
|
|
1133
1426
|
"parameters": [
|
|
1427
|
+
{
|
|
1428
|
+
"name": "competitor_id",
|
|
1429
|
+
"in": "path",
|
|
1430
|
+
"schema": {
|
|
1431
|
+
"type": "string"
|
|
1432
|
+
},
|
|
1433
|
+
"required": true
|
|
1434
|
+
},
|
|
1134
1435
|
{
|
|
1135
1436
|
"name": "Publer-Workspace-Id",
|
|
1136
1437
|
"in": "header",
|
|
1137
1438
|
"schema": {
|
|
1138
1439
|
"type": "string"
|
|
1139
1440
|
},
|
|
1140
|
-
"example": "{{workspace_id}}"
|
|
1441
|
+
"example": "{{workspace_id}}",
|
|
1442
|
+
"required": true
|
|
1141
1443
|
},
|
|
1142
1444
|
{
|
|
1143
1445
|
"name": "from",
|
|
@@ -1161,7 +1463,7 @@
|
|
|
1161
1463
|
"schema": {
|
|
1162
1464
|
"type": "integer"
|
|
1163
1465
|
},
|
|
1164
|
-
"example":
|
|
1466
|
+
"example": 0
|
|
1165
1467
|
}
|
|
1166
1468
|
],
|
|
1167
1469
|
"responses": {
|
|
@@ -1174,5 +1476,52 @@
|
|
|
1174
1476
|
}
|
|
1175
1477
|
}
|
|
1176
1478
|
}
|
|
1479
|
+
},
|
|
1480
|
+
"components": {
|
|
1481
|
+
"schemas": {
|
|
1482
|
+
"Account": {
|
|
1483
|
+
"type": "object",
|
|
1484
|
+
"properties": {
|
|
1485
|
+
"id": {
|
|
1486
|
+
"type": "string",
|
|
1487
|
+
"description": "Unique identifier for the account"
|
|
1488
|
+
},
|
|
1489
|
+
"provider": {
|
|
1490
|
+
"type": "string",
|
|
1491
|
+
"description": "The social network provider",
|
|
1492
|
+
"enum": ["bluesky", "facebook", "instagram", "linkedin", "twitter", "tiktok", "youtube", "pinterest", "google", "wordpress", "telegram", "mastodon", "threads"]
|
|
1493
|
+
},
|
|
1494
|
+
"name": {
|
|
1495
|
+
"type": "string",
|
|
1496
|
+
"description": "The display name of the social media account"
|
|
1497
|
+
},
|
|
1498
|
+
"social_id": {
|
|
1499
|
+
"type": "string",
|
|
1500
|
+
"description": "Unique identifier for the account on the social media platform"
|
|
1501
|
+
},
|
|
1502
|
+
"picture": {
|
|
1503
|
+
"type": "string",
|
|
1504
|
+
"description": "URL to the account's avatar/logo"
|
|
1505
|
+
},
|
|
1506
|
+
"type": {
|
|
1507
|
+
"type": "string",
|
|
1508
|
+
"description": "Account type",
|
|
1509
|
+
"enum": ["page", "profile", "group", "business", "channel", "location", "blog"]
|
|
1510
|
+
},
|
|
1511
|
+
"status": {
|
|
1512
|
+
"type": "string",
|
|
1513
|
+
"description": "Account status"
|
|
1514
|
+
}
|
|
1515
|
+
}
|
|
1516
|
+
}
|
|
1517
|
+
},
|
|
1518
|
+
"securitySchemes": {
|
|
1519
|
+
"bearerAuth": {
|
|
1520
|
+
"type": "apiKey",
|
|
1521
|
+
"name": "Authorization",
|
|
1522
|
+
"in": "header",
|
|
1523
|
+
"description": "API key authentication. Format: \"Bearer-API YOUR_API_KEY\""
|
|
1524
|
+
}
|
|
1525
|
+
}
|
|
1177
1526
|
}
|
|
1178
1527
|
}
|
package/dist/package.json
CHANGED