Skip to main content
PATCH
/
v1
/
knowledge-gaps
/
clusters
/
{cluster_id}
/
owner
Assign or clear the owner of a knowledge-gap cluster
curl --request PATCH \
  --url https://api-sandbox.featherhq.com/v1/knowledge-gaps/clusters/{cluster_id}/owner \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "owner_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "note": "<string>"
}
'
{
  "cluster_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "from_status": "<string>",
  "to_status": "<string>",
  "actor_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "event_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

x-api-key
string
header
required

Path Parameters

cluster_id
string<uuid>
required

Body

application/json

Body for PATCH /clusters/{cluster_id}/owner.

owner_user_id=null clears ownership.

owner_user_id
string<uuid> | null
required

OrgMember.id of the new owner, or null to unassign.

note
string | null
Maximum string length: 1000

Response

Successful Response

Wire shape for a successful lifecycle mutation.

Mirrors ClusterTransitionResult from the lifecycle service with enum statuses flattened to their string values for SDK ergonomics.

cluster_id
string<uuid>
required
from_status
string
required
to_status
string
required
actor_user_id
string<uuid> | null
required
event_id
string<uuid> | null
required