/api/v1/privacy/consentWithdraw consent
Records consent withdrawal (GDPR Art. 7(3)) by stamping `revoked_at` and setting `granted:false` on the `consent_records` row named by the required `?id` query param (400 MISSING_ID); the record's own org is resolved from the row and membership-verified before the write. Returns the updated row. Best-effort follow-on: fires any playbooks the org has subscribed to the `consent_revoked` trigger — available actions are notification/ticketing integrations (Slack, Teams, Discord, webhook, email, Jira, Linear, PagerDuty, Tines, Torq) and the containment actions revoke_api_key, suspend_agent, block_ip. There is no automatic data deletion, and nothing fires when no playbook is configured.
Authentication
Send Authorization: Bearer YOUR_API_KEY on every request. Generate API keys at /dashboard/settings/api-keys.
Response
200 example
{
"success": true
}All status codes
Code samples
cURL
curl -X PATCH \ https://evalguard.ai/api/v1/privacy/consent \ -H "Authorization: Bearer $EVALGUARD_API_KEY"
TypeScript
// The TypeScript SDK (@evalguard/sdk) exposes TYPED methods — runEval,
// getEval, runSecurityScan, checkFirewall, … — not a generic request().
// For an arbitrary endpoint, call it directly:
const res = await fetch("https://evalguard.ai/api/v1/privacy/consent", {
method: "PATCH",
headers: { Authorization: `Bearer ${process.env.EVALGUARD_API_KEY}` },
});
console.log(res.status, await res.json());Python
# The Python SDK (pip install evalguardai) exposes TYPED methods on
# EvalGuardClient — run_eval, get_eval, … — not a generic request().
# For an arbitrary endpoint, call it directly:
import os
import requests
headers = {"Authorization": f"Bearer {os.environ['EVALGUARD_API_KEY']}"}
response = requests.request("PATCH", "https://evalguard.ai/api/v1/privacy/consent", headers=headers)
print(response.status_code, response.json())Go
package main
import (
"context"
"fmt"
"net/http"
"os"
)
func main() {
req, _ := http.NewRequestWithContext(context.Background(), "PATCH", "https://evalguard.ai/api/v1/privacy/consent", nil)
req.Header.Set("Authorization", "Bearer "+os.Getenv("EVALGUARD_API_KEY"))
resp, err := http.DefaultClient.Do(req)
if err != nil { panic(err) }
defer resp.Body.Close()
fmt.Println(resp.Status)
}