POSTapi.synup.com/api/v4/social-post-ideas/schedule-series
Schedule series
Schedules a content series' posts starting from a given date. Returns the scheduled posts.
Requires an API key. Send it as
Authorization: API <your-key> — see Getting started.Parameters
Headers
| Name | Type | Required | Description |
|---|---|---|---|
Synup-Version | string | required | API version date (YYYY-MM-DD). |
Body
| Name | Type | Required | Description |
|---|---|---|---|
seriesId | string | required | |
startDate | string | required | Series start date (YYYY-MM-DD). |
Request
Request
curl -X POST 'https://api.synup.com/api/v4/social-post-ideas/schedule-series' \
-H 'Authorization: API YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"seriesId": "3a1f...",
"startDate": "2026-05-01"
}'const res = await fetch('https://api.synup.com/api/v4/social-post-ideas/schedule-series', {
method: 'POST',
headers: {
Authorization: 'API YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"seriesId": "3a1f...",
"startDate": "2026-05-01"
}),
});
const data = await res.json();import requests
res = requests.post(
"https://api.synup.com/api/v4/social-post-ideas/schedule-series",
headers={
"Authorization": "API YOUR_API_KEY",
"Content-Type": "application/json",
},
json={
"seriesId": "3a1f...",
"startDate": "2026-05-01"
},
)
data = res.json()req, _ := http.NewRequest("POST", "https://api.synup.com/api/v4/social-post-ideas/schedule-series", bytes.NewBufferString(payload))
req.Header.Set("Authorization", "API YOUR_API_KEY")
req.Header.Set("Content-Type", "application/json")
res, err := http.DefaultClient.Do(req)Responses
| Status | Description |
|---|---|
200 | Successful response |
401 | Unauthorized - Invalid or missing API key |
Example response (generated from the schema)
{
"data": {
"scheduleSeries": {
"success": true,
"scheduledPosts": [
{}
],
"error": {
"message": "string",
"code": "string",
"contextInfo": [
{
"key": "string",
"value": "string"
}
]
}
}
}
}Response body
| Name | Type | Required | Description |
|---|---|---|---|
data | object | optional | |
data.scheduleSeries | object | optional | |
data.scheduleSeries.success | boolean | optional | |
data.scheduleSeries.scheduledPosts | array of object | optional | The scheduled posts (see Post idea for the full shape). |
data.scheduleSeries.error | object | optional | |
data.scheduleSeries.error.message | string | optional | |
data.scheduleSeries.error.code | string | optional | |
data.scheduleSeries.error.contextInfo | array of object | optional | |
data.scheduleSeries.error.contextInfo[].key | string | optional | |
data.scheduleSeries.error.contextInfo[].value | string | optional |