Appearance
Retry Schedule
PUT/public/schedule/{scheduleId}/retryRe-queue a failed scheduled post for another publish attempt using the same content and settings.
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. |
Example Request
bash
curl -X PUT "https://api.repliz.com/public/schedule/680affa5ce12f2f72916f67e/retry" \
-H "Authorization: Basic $(echo -n 'YOUR_ACCESS_KEY:YOUR_SECRET_KEY' | base64)"javascript
import axios from 'axios';
const scheduleId = '680affa5ce12f2f72916f67e';
const response = await axios.put(`https://api.repliz.com/public/schedule/${scheduleId}/retry`, {}, {
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}/retry`, {
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"
}