Skip to content
Last updated

Restore an archived knowledge slice back to active status.

POSThttps://api.aitronos.com/v1/organizations/{organization_id}/knowledge/slices/{slice_id}/unarchive

Unarchives the specified knowledge slice, restoring it to active status. Requires the MANAGE_KNOWLEDGE_SLICES capability.

Path Parameters

organization_id string required

The unique identifier of the organization (format: org_*).

slice_id string required

The unique identifier of the knowledge slice (format: kslice_*).


Returns

The restored knowledge slice object with archived_at and archived_by cleared.

cURL
curl -X POST https://api.aitronos.com/v1/organizations/org_xyz789/knowledge/slices/kslice_abc123/unarchive \
  -H "Authorization: Bearer $ACCESS_TOKEN"