curl --request PATCH \
--url https://api.scripe.io/v1/ideas/{ideaId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"projectId": "proj_a1b2c3d4e5f6g7h8",
"title": "<string>",
"content": "<string>",
"pillar": "<string>",
"postType": "<string>",
"assetFormat": "<string>",
"hook": "<string>",
"topic": "<string>"
}
'import requests
url = "https://api.scripe.io/v1/ideas/{ideaId}"
payload = {
"projectId": "proj_a1b2c3d4e5f6g7h8",
"title": "<string>",
"content": "<string>",
"pillar": "<string>",
"postType": "<string>",
"assetFormat": "<string>",
"hook": "<string>",
"topic": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
projectId: 'proj_a1b2c3d4e5f6g7h8',
title: '<string>',
content: '<string>',
pillar: '<string>',
postType: '<string>',
assetFormat: '<string>',
hook: '<string>',
topic: '<string>'
})
};
fetch('https://api.scripe.io/v1/ideas/{ideaId}', 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.scripe.io/v1/ideas/{ideaId}",
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([
'projectId' => 'proj_a1b2c3d4e5f6g7h8',
'title' => '<string>',
'content' => '<string>',
'pillar' => '<string>',
'postType' => '<string>',
'assetFormat' => '<string>',
'hook' => '<string>',
'topic' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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.scripe.io/v1/ideas/{ideaId}"
payload := strings.NewReader("{\n \"projectId\": \"proj_a1b2c3d4e5f6g7h8\",\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"pillar\": \"<string>\",\n \"postType\": \"<string>\",\n \"assetFormat\": \"<string>\",\n \"hook\": \"<string>\",\n \"topic\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.scripe.io/v1/ideas/{ideaId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"projectId\": \"proj_a1b2c3d4e5f6g7h8\",\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"pillar\": \"<string>\",\n \"postType\": \"<string>\",\n \"assetFormat\": \"<string>\",\n \"hook\": \"<string>\",\n \"topic\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scripe.io/v1/ideas/{ideaId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"projectId\": \"proj_a1b2c3d4e5f6g7h8\",\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"pillar\": \"<string>\",\n \"postType\": \"<string>\",\n \"assetFormat\": \"<string>\",\n \"hook\": \"<string>\",\n \"topic\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "idea_a1b2c3d4e5f6g7h8",
"title": "<string>",
"status": "inbox",
"createdAt": "<string>",
"pillar": "<string>",
"postType": "<string>",
"assetFormat": "<string>",
"hook": "<string>",
"topic": "<string>",
"scheduledFor": "<string>",
"linkedPost": {
"id": "post_a1b2c3d4e5f6g7h8",
"statusCategory": "<string>"
}
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}Update an idea's brief
Edits the board’s update field set: title, body, pillar, post
format, visual format, hook, topic, and/or the column. Only
provided fields change; brief fields accept null to clear.
status accepts only inbox | in_production — review/done
are derived from the linked post and cannot be written. There is
no REST delete: the destroy verb is two-phase and not exposed on
REST.
Required scope: ideas:write.
curl --request PATCH \
--url https://api.scripe.io/v1/ideas/{ideaId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"projectId": "proj_a1b2c3d4e5f6g7h8",
"title": "<string>",
"content": "<string>",
"pillar": "<string>",
"postType": "<string>",
"assetFormat": "<string>",
"hook": "<string>",
"topic": "<string>"
}
'import requests
url = "https://api.scripe.io/v1/ideas/{ideaId}"
payload = {
"projectId": "proj_a1b2c3d4e5f6g7h8",
"title": "<string>",
"content": "<string>",
"pillar": "<string>",
"postType": "<string>",
"assetFormat": "<string>",
"hook": "<string>",
"topic": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
projectId: 'proj_a1b2c3d4e5f6g7h8',
title: '<string>',
content: '<string>',
pillar: '<string>',
postType: '<string>',
assetFormat: '<string>',
hook: '<string>',
topic: '<string>'
})
};
fetch('https://api.scripe.io/v1/ideas/{ideaId}', 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.scripe.io/v1/ideas/{ideaId}",
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([
'projectId' => 'proj_a1b2c3d4e5f6g7h8',
'title' => '<string>',
'content' => '<string>',
'pillar' => '<string>',
'postType' => '<string>',
'assetFormat' => '<string>',
'hook' => '<string>',
'topic' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"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.scripe.io/v1/ideas/{ideaId}"
payload := strings.NewReader("{\n \"projectId\": \"proj_a1b2c3d4e5f6g7h8\",\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"pillar\": \"<string>\",\n \"postType\": \"<string>\",\n \"assetFormat\": \"<string>\",\n \"hook\": \"<string>\",\n \"topic\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.scripe.io/v1/ideas/{ideaId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"projectId\": \"proj_a1b2c3d4e5f6g7h8\",\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"pillar\": \"<string>\",\n \"postType\": \"<string>\",\n \"assetFormat\": \"<string>\",\n \"hook\": \"<string>\",\n \"topic\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scripe.io/v1/ideas/{ideaId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"projectId\": \"proj_a1b2c3d4e5f6g7h8\",\n \"title\": \"<string>\",\n \"content\": \"<string>\",\n \"pillar\": \"<string>\",\n \"postType\": \"<string>\",\n \"assetFormat\": \"<string>\",\n \"hook\": \"<string>\",\n \"topic\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "idea_a1b2c3d4e5f6g7h8",
"title": "<string>",
"status": "inbox",
"createdAt": "<string>",
"pillar": "<string>",
"postType": "<string>",
"assetFormat": "<string>",
"hook": "<string>",
"topic": "<string>",
"scheduledFor": "<string>",
"linkedPost": {
"id": "post_a1b2c3d4e5f6g7h8",
"statusCategory": "<string>"
}
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "not_found",
"message": "<string>",
"request_id": "req_a1b2c3d4e5f6",
"docs_url": "<string>",
"details": "<unknown>"
}
}Authorizations
Pass Authorization: Bearer scripe_sk_live_<...> (or
scripe_sk_test_<...> for test keys) on every request. Keys
are scoped to a single workspace and can be revoked from the
Scripe dashboard.
The same header also accepts an OAuth 2.1 access token
(scripe_oat_*); both credentials share one scope vocabulary
and every operation below documents the scope it requires.
An API key can hold every scope named on this surface except
webhooks:manage, which is grantable to OAuth tokens only
today — the webhook-endpoint operations answer
403 scope_missing to every API key. Operations that name no
scope accept any valid token of the workspace.
Headers
Pin the API version. Format YYYY-MM-DD. Omit to receive the
currently rolling default. Unknown versions return 400 version_unsupported.
"2026-08-10"
Path Parameters
"idea_a1b2c3d4e5f6g7h8"
Body
Only provided fields change. Brief fields (pillar, postType,
assetFormat, hook, topic) accept null to clear; at least
one updatable field must be present.
"proj_a1b2c3d4e5f6g7h8"
25565535inbox, in_production 326432500255Response
The updated idea (status is the DERIVED value).
Show child attributes
Show child attributes