Appearance
Update Schedule
PUT/public/schedule/{scheduleId}Update the content, scheduled time, or configuration of an existing scheduled post.
Endpoint Details
- Authentication: Basic Auth (
Authorization: Basic Base64(AccessKey:SecretKey)) - Access Tier: Premium+
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
scheduleId | string | Yes | The unique identifier of the scheduled post. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
title | string | Yes | Title of the content (used for YouTube, etc.). |
description | string | Yes | Caption or description of the post. |
topic | string | Yes | Topic label for AI-generated content. |
type | string | Yes | Content type to post. Options: text, image, video, reel, album, link, story. |
medias | array | Yes | Array of media objects to attach (images/videos). |
meta | object | Yes | Link metadata for link-type posts. |
additionalInfo | object | Yes | Additional configuration for the post. |
replies | array | Yes | Nested replies for thread-style posts (Threads platform). |
scheduleAt | string | Yes | ISO 8601 datetime for the scheduled publish time. |
templateId | string | No | ID of the automation template to attach to this post. |
Example Request
bash
curl -X PUT "https://api.repliz.com/public/schedule/680affa5ce12f2f72916f67e" \
-H "Authorization: Basic $(echo -n 'YOUR_ACCESS_KEY:YOUR_SECRET_KEY' | base64)" \
-H "Content-Type: application/json" \
-d '{}'javascript
import axios from 'axios';
const scheduleId = '680affa5ce12f2f72916f67e';
const response = await axios.put(`https://api.repliz.com/public/schedule/${scheduleId}`, {}, {
auth: {
username: 'YOUR_ACCESS_KEY',
password: 'YOUR_SECRET_KEY'
}
});
console.log(response.data);javascript
const credentials = btoa('YOUR_ACCESS_KEY:YOUR_SECRET_KEY');
const scheduleId = '680affa5ce12f2f72916f67e';
const response = await fetch(`https://api.repliz.com/public/schedule/${scheduleId}`, {
method: 'PUT',
headers: {
'Authorization': `Basic ${credentials}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({})
});
const data = await response.json();
console.log(data);Response
json
// No content returned on successjson
{
"code": 404,
"message": "schedule not found"
}json
{
"code": 401,
"message": "unauthorized"
}