latestOpenAPI 3.0.32026-08-23410223.0 KB
c93447ba6b9d
publishing
Get a scheduled post by ID
Fetches a single scheduled post by its ID. Returns the schedule details including the draft content and account information.
get/v2/schedules/{id}
Path parameters
idstring required
Response
Default Response
Example response
{
"schedule": {
"draft": {
"accountId": "1",
"content": {
"text": "My text",
"mediaUrls": [
"https://database.blotato.io/some-image-path.jpg"
],
"platform": "twitter",
"additionalPosts": [
{
"text": "My text",
"mediaUrls": [
"https://database.blotato.io/some-image-path.jpg"
]
}
]
},
"target": {
"targetType": "webhook",
"url": "https://example.com/webhook"
}
}
}
}