curl --request POST \
--url https://api.murmur.dev/v1/change-request/{id}/endorse \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"tenant": {
"provider": "PROVIDER_UNSPECIFIED",
"org": "<string>"
}
}
'import requests
url = "https://api.murmur.dev/v1/change-request/{id}/endorse"
payload = { "tenant": {
"provider": "PROVIDER_UNSPECIFIED",
"org": "<string>"
} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({tenant: {provider: 'PROVIDER_UNSPECIFIED', org: '<string>'}})
};
fetch('https://api.murmur.dev/v1/change-request/{id}/endorse', 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.murmur.dev/v1/change-request/{id}/endorse",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'tenant' => [
'provider' => 'PROVIDER_UNSPECIFIED',
'org' => '<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.murmur.dev/v1/change-request/{id}/endorse"
payload := strings.NewReader("{\n \"tenant\": {\n \"provider\": \"PROVIDER_UNSPECIFIED\",\n \"org\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.murmur.dev/v1/change-request/{id}/endorse")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"tenant\": {\n \"provider\": \"PROVIDER_UNSPECIFIED\",\n \"org\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.murmur.dev/v1/change-request/{id}/endorse")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"tenant\": {\n \"provider\": \"PROVIDER_UNSPECIFIED\",\n \"org\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"changeRequest": {
"id": "<string>",
"targetKind": "<string>",
"targetName": "<string>",
"proposedPayload": "aSDinaTvuI8gbWludGxpZnk=",
"baseVersion": "<string>",
"status": "CHANGE_REQUEST_STATUS_UNSPECIFIED",
"proposer": {
"provider": "PROVIDER_UNSPECIFIED",
"account": "<string>"
},
"approver": {
"provider": "PROVIDER_UNSPECIFIED",
"account": "<string>"
},
"rationale": "<string>",
"decisionNote": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"decidedAt": "2023-11-07T05:31:56Z",
"appliedAt": "2023-11-07T05:31:56Z",
"appliedGeneration": "<string>",
"endorsers": [
{
"principal": {
"provider": "PROVIDER_UNSPECIFIED",
"account": "<string>"
},
"agent": {
"tenant": {
"provider": "PROVIDER_UNSPECIFIED",
"org": "<string>"
},
"ownerProvider": "PROVIDER_UNSPECIFIED",
"account": "<string>",
"agent": [
"<string>"
],
"workspace": "<string>"
}
}
],
"source": {
"imageRollout": {
"recipeRef": "<string>",
"imageHash": "<string>"
},
"recipeBake": {
"recipeRef": "<string>"
}
},
"bake": {
"recipeRef": "<string>",
"environmentRef": "<string>",
"placementRef": "<string>",
"serviceProfile": "<string>",
"serviceAccount": "<string>",
"forceNew": true
},
"spawn": {
"slug": "<string>",
"workspace": "<string>",
"serviceProfile": "<string>",
"description": "<string>",
"persona": "<string>",
"model": "<string>",
"expectedOutput": "<string>",
"tags": [
"<string>"
],
"onIdle": "ON_IDLE_UNSPECIFIED",
"purpose": "<string>",
"tasks": [
"<string>"
],
"reasoningEffort": "<string>",
"suppressedEventClasses": [
"FOLLOW_UP_EVENT_CLASS_UNSPECIFIED"
],
"dequeueStrategy": "DEQUEUE_STRATEGY_UNSPECIFIED",
"suggestTerminateMode": "SUGGEST_TERMINATE_MODE_UNSPECIFIED"
}
}
}{
"code": 123,
"message": "<string>",
"details": [
{
"@type": "<string>"
}
]
}Endorse a change request
EndorseChangeRequest adds the caller to a change-request’s endorser set (idempotent). Advisory demand signal only — never authorizes a write.
curl --request POST \
--url https://api.murmur.dev/v1/change-request/{id}/endorse \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"tenant": {
"provider": "PROVIDER_UNSPECIFIED",
"org": "<string>"
}
}
'import requests
url = "https://api.murmur.dev/v1/change-request/{id}/endorse"
payload = { "tenant": {
"provider": "PROVIDER_UNSPECIFIED",
"org": "<string>"
} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({tenant: {provider: 'PROVIDER_UNSPECIFIED', org: '<string>'}})
};
fetch('https://api.murmur.dev/v1/change-request/{id}/endorse', 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.murmur.dev/v1/change-request/{id}/endorse",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'tenant' => [
'provider' => 'PROVIDER_UNSPECIFIED',
'org' => '<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.murmur.dev/v1/change-request/{id}/endorse"
payload := strings.NewReader("{\n \"tenant\": {\n \"provider\": \"PROVIDER_UNSPECIFIED\",\n \"org\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.murmur.dev/v1/change-request/{id}/endorse")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"tenant\": {\n \"provider\": \"PROVIDER_UNSPECIFIED\",\n \"org\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.murmur.dev/v1/change-request/{id}/endorse")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"tenant\": {\n \"provider\": \"PROVIDER_UNSPECIFIED\",\n \"org\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"changeRequest": {
"id": "<string>",
"targetKind": "<string>",
"targetName": "<string>",
"proposedPayload": "aSDinaTvuI8gbWludGxpZnk=",
"baseVersion": "<string>",
"status": "CHANGE_REQUEST_STATUS_UNSPECIFIED",
"proposer": {
"provider": "PROVIDER_UNSPECIFIED",
"account": "<string>"
},
"approver": {
"provider": "PROVIDER_UNSPECIFIED",
"account": "<string>"
},
"rationale": "<string>",
"decisionNote": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"decidedAt": "2023-11-07T05:31:56Z",
"appliedAt": "2023-11-07T05:31:56Z",
"appliedGeneration": "<string>",
"endorsers": [
{
"principal": {
"provider": "PROVIDER_UNSPECIFIED",
"account": "<string>"
},
"agent": {
"tenant": {
"provider": "PROVIDER_UNSPECIFIED",
"org": "<string>"
},
"ownerProvider": "PROVIDER_UNSPECIFIED",
"account": "<string>",
"agent": [
"<string>"
],
"workspace": "<string>"
}
}
],
"source": {
"imageRollout": {
"recipeRef": "<string>",
"imageHash": "<string>"
},
"recipeBake": {
"recipeRef": "<string>"
}
},
"bake": {
"recipeRef": "<string>",
"environmentRef": "<string>",
"placementRef": "<string>",
"serviceProfile": "<string>",
"serviceAccount": "<string>",
"forceNew": true
},
"spawn": {
"slug": "<string>",
"workspace": "<string>",
"serviceProfile": "<string>",
"description": "<string>",
"persona": "<string>",
"model": "<string>",
"expectedOutput": "<string>",
"tags": [
"<string>"
],
"onIdle": "ON_IDLE_UNSPECIFIED",
"purpose": "<string>",
"tasks": [
"<string>"
],
"reasoningEffort": "<string>",
"suppressedEventClasses": [
"FOLLOW_UP_EVENT_CLASS_UNSPECIFIED"
],
"dequeueStrategy": "DEQUEUE_STRATEGY_UNSPECIFIED",
"suggestTerminateMode": "SUGGEST_TERMINATE_MODE_UNSPECIFIED"
}
}
}{
"code": 123,
"message": "<string>",
"details": [
{
"@type": "<string>"
}
]
}Authorizations
murmur API key: mur_<key_id>.
Path Parameters
The change-request id to endorse (e.g. "cr-a1b2c3").
Body
EndorseChangeRequest adds the caller to a change-request's endorser set (idempotent — re-endorsing is a no-op). The endorser identity is stamped server-side from the authenticated caller (a Principal, or an AgentId for an agent-runtime caller), never read from the request. Allowed only while the change-request is non-terminal (PENDING/APPROVED). Gated by change-request.endorse AND {target_kind}.read on the target — strictly below the propose (create) and approve (target-write) permissions.
Tenant identifies an organization within a provider. It is the unit of multi-tenant scoping — all resources (agents, pools, VMs) belong to exactly one tenant.
Show child attributes
Show child attributes
Response
A successful response.
CatalogChangeRequest wraps a proposed change to ANY catalog resource and gates it behind an approval. It is generic over catalog Kind: target_kind names the kind, proposed_payload is the full proposed value for that kind, and apply reuses the same write path SetResource uses. Recipe is one possible target_kind, not a special case.
Show child attributes
Show child attributes