- 🐶 OnlySocial API Walk through
- Only Social
- Accounts
- Media
- Tags
- Posts
Create a post
POST
https://app.onlysocial.io/os/api/{workspaceUuid}/posts
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
workspaceUuid
string
required
Example:
<workspaceUuid>
Body Params application/json
date
string
optional
time
string
optional
timezone
string
optional
schedule
boolean
optional
schedule_now
boolean
optional
queue
boolean
optional
accounts
array[integer]
required
tags
array[integer]
required
versions
array [object {4}]
required
account_id
integer
required
is_original
boolean
required
content
array [object {3}]
required
options
object
optional
account-*
is the ID of your Pinterest account } }, "youtube": { "title": null', // null|string "status": "public" // public,private,unlisted }, "tiktok": { "privacy_level": { "account-2": 'PUBLIC_TO_EVERYONE' // string | PUBLIC_TO_EVERYONE,MUTUAL_FOLLOW_FRIENDS,SELF_ONLY | The key account-*
is the ID of your TikTok account. }, "allow_comments": { "account-2": true // boolean | The key account-*
is the ID of your TikTok account }, "allow_duet": { "account-2": false // boolean | The key account-*
is the ID of your TikTok account }, "allow_stitch": { "account-2": false // boolean | The key account-*
is the ID of your TikTok account }, "content_disclosure": { "account-2": false // boolean | The key account-*
is the ID of your TikTok account }, "brand_organic_toggle": { "account-2": false // boolean | The key account-*
is the ID of your TikTok account }, "brand_content_toggle": { "account-2": false // boolean | The key account-*
is the ID of your TikTok account }, } }Example
{
"date": "2024-05-23",
"time": "15:00",
"timezone": "Europe/Chisinau",
"schedule": true,
"schedule_now": true,
"queue": true,
"accounts": [
1,
2,
3
],
"tags": [
1,
2
],
"versions": [
{
"account_id": 0,
"is_original": true,
"content": [
{
"body": "This is the content",
"media": [
1
]
}
],
"options": {
"mastodon": {
"sensitive": false
}
}
}
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.onlysocial.io/os/api/<workspaceUuid>/posts' \
--header 'Content-Type: application/json' \
--data-raw '{
"date": "2024-05-23",
"time": "15:00",
"timezone": "Europe/Chisinau",
"schedule": true,
"schedule_now": true,
"queue": true,
"accounts": [1,2,3],
"tags": [1,2],
"versions": [
{
"account_id": 0,
"is_original": true,
"content": [
{
"body": "This is the content",
"media": [
1
]
}
],
"options": {
"mastodon": {
"sensitive": false
}
}
}
]
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{
"id": 3,
"uuid": "6059e1b3-e102-4be5-951b-82698abd9ee3",
"name": "Motivation",
"hex_color": "#000000"
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🟠422Parameter Error
Modified at 2024-06-28 15:04:23