Acknowledge a governance signal
curl --request POST \
--url https://api.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action_taken": "<string>"
}
'import requests
url = "https://api.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge"
payload = { "action_taken": "<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({action_taken: '<string>'})
};
fetch('https://api.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge', 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.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge",
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([
'action_taken' => '<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.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge"
payload := strings.NewReader("{\n \"action_taken\": \"<string>\"\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.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"action_taken\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge")
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 \"action_taken\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"scope": "platform",
"scope_id": "<string>",
"source": "sideband.drift",
"pattern_type": "<string>",
"severity": "info",
"detected_at": "2023-11-07T05:31:56Z",
"detected_by": "<string>",
"org_id": "<string>",
"agent_ids": [
"<string>"
],
"detail": {},
"source_ref": {},
"status": "open",
"notification_state": {
"skipped": true
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acknowledged_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acknowledged_at": "2023-11-07T05:31:56Z",
"acknowledged_actor_role": "platform_admin",
"resolution_status": "action_taken",
"action_taken": "<string>",
"resolved_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"resolved_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"webhook_delivery_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Governance
Acknowledge a governance signal
Records the actor + timestamp on the signal row.
POST
/
governance
/
signals
/
{signal_id}
/
acknowledge
Acknowledge a governance signal
curl --request POST \
--url https://api.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action_taken": "<string>"
}
'import requests
url = "https://api.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge"
payload = { "action_taken": "<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({action_taken: '<string>'})
};
fetch('https://api.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge', 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.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge",
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([
'action_taken' => '<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.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge"
payload := strings.NewReader("{\n \"action_taken\": \"<string>\"\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.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"action_taken\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/governance/signals/{signal_id}/acknowledge")
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 \"action_taken\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"scope": "platform",
"scope_id": "<string>",
"source": "sideband.drift",
"pattern_type": "<string>",
"severity": "info",
"detected_at": "2023-11-07T05:31:56Z",
"detected_by": "<string>",
"org_id": "<string>",
"agent_ids": [
"<string>"
],
"detail": {},
"source_ref": {},
"status": "open",
"notification_state": {
"skipped": true
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acknowledged_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"acknowledged_at": "2023-11-07T05:31:56Z",
"acknowledged_actor_role": "platform_admin",
"resolution_status": "action_taken",
"action_taken": "<string>",
"resolved_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"resolved_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"webhook_delivery_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Authorizations
BearerAuthApiKeyAuth
Supabase JWT token in Authorization: Bearer header
Path Parameters
Pattern:
^gs-[0-9a-f]{12}$Body
application/json
Optional note about what action is being taken.
Response
Governance signal.
A governance signal row — operator-actionable observation per ADR-048.
Pattern:
^gs-[0-9a-f]{12}$Scope at which the signal is produced and routed (ADR-048 §1).
Available options:
platform, org, team, agent Source detector for the signal. Closed enum per ADR-048 §1. network.threat_level.changed added in migration 234.
Available options:
sideband.drift, sideband.coherence, sideband.fault_line, sideband.fleet, network.threat_level.changed Free-form per source.
Available options:
info, warn, high, critical Available options:
open, acknowledged, resolved, dismissed, expired Per-channel dispatch state populated by the notification dispatcher.
Show child attributes
Show child attributes
Audit-actor role per ADR-046.
Available options:
platform_admin, org_owner, org_admin, team_admin, member, system Available options:
action_taken, wont_fix, duplicate, false_positive, self_resolved