curl --request DELETE \
--url https://api.mnemom.ai/v1/orgs/{org_id}/alignment-template \
--header 'Authorization: Bearer <token>' \
--header 'Idempotency-Key: <idempotency-key>'{
"org_id": "<string>",
"template": null,
"enabled": false,
"deleted": true,
"agents_flagged_for_recompose": 123
}Clears the org alignment template (stored as null, enabled: false) and flags every member agent for recompose so their canonical cards fall back to platform defaults + agent card. Requires org owner/admin and Idempotency-Key. See ADR-008.
curl --request DELETE \
--url https://api.mnemom.ai/v1/orgs/{org_id}/alignment-template \
--header 'Authorization: Bearer <token>' \
--header 'Idempotency-Key: <idempotency-key>'{
"org_id": "<string>",
"template": null,
"enabled": false,
"deleted": true,
"agents_flagged_for_recompose": 123
}Supabase JWT token in Authorization: Bearer header
Organization identifier (e.g. org-abc12345)