Update Scheduled Post
curl --request PATCH \
--url https://api.supapost.so/schedule/posts/{id} \
--header 'Content-Type: application/json' \
--data '
{
"scheduled_at": "<string>",
"title": "<string>",
"status": "<string>"
}
'import requests
url = "https://api.supapost.so/schedule/posts/{id}"
payload = {
"scheduled_at": "<string>",
"title": "<string>",
"status": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({scheduled_at: '<string>', title: '<string>', status: '<string>'})
};
fetch('https://api.supapost.so/schedule/posts/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.supapost.so/schedule/posts/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'scheduled_at' => '<string>',
'title' => '<string>',
'status' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.supapost.so/schedule/posts/{id}"
payload := strings.NewReader("{\n \"scheduled_at\": \"<string>\",\n \"title\": \"<string>\",\n \"status\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.supapost.so/schedule/posts/{id}")
.header("Content-Type", "application/json")
.body("{\n \"scheduled_at\": \"<string>\",\n \"title\": \"<string>\",\n \"status\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.supapost.so/schedule/posts/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"scheduled_at\": \"<string>\",\n \"title\": \"<string>\",\n \"status\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "post-uuid",
"team_id": "team-uuid",
"scheduled_at": "2026-04-12T10:00:00Z",
"title": "Updated Title",
"status": "scheduled",
"updated_at": "2026-04-08T09:00:00Z"
}
{
"success": false,
"message": "Post not found or not editable"
}
Scheduling
Update Scheduled Post
Update a scheduled post
PATCH
/
schedule
/
posts
/
{id}
Update Scheduled Post
curl --request PATCH \
--url https://api.supapost.so/schedule/posts/{id} \
--header 'Content-Type: application/json' \
--data '
{
"scheduled_at": "<string>",
"title": "<string>",
"status": "<string>"
}
'import requests
url = "https://api.supapost.so/schedule/posts/{id}"
payload = {
"scheduled_at": "<string>",
"title": "<string>",
"status": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({scheduled_at: '<string>', title: '<string>', status: '<string>'})
};
fetch('https://api.supapost.so/schedule/posts/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.supapost.so/schedule/posts/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'scheduled_at' => '<string>',
'title' => '<string>',
'status' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.supapost.so/schedule/posts/{id}"
payload := strings.NewReader("{\n \"scheduled_at\": \"<string>\",\n \"title\": \"<string>\",\n \"status\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.supapost.so/schedule/posts/{id}")
.header("Content-Type", "application/json")
.body("{\n \"scheduled_at\": \"<string>\",\n \"title\": \"<string>\",\n \"status\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.supapost.so/schedule/posts/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"scheduled_at\": \"<string>\",\n \"title\": \"<string>\",\n \"status\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "post-uuid",
"team_id": "team-uuid",
"scheduled_at": "2026-04-12T10:00:00Z",
"title": "Updated Title",
"status": "scheduled",
"updated_at": "2026-04-08T09:00:00Z"
}
{
"success": false,
"message": "Post not found or not editable"
}
Update the time, title, or status of a scheduled post. Only posts with
"scheduled" status can be updated.
Authentication
string
Bearer token.
Bearer <supabase-jwt>.Path Parameters
string
required
The scheduled post ID (UUID).
Body
string
New ISO 8601 datetime for publishing.
string
Updated title or caption.
string
Updated status value.
{
"id": "post-uuid",
"team_id": "team-uuid",
"scheduled_at": "2026-04-12T10:00:00Z",
"title": "Updated Title",
"status": "scheduled",
"updated_at": "2026-04-08T09:00:00Z"
}
{
"success": false,
"message": "Post not found or not editable"
}
⌘I