ts.rel.delete

Remove a relationship.

Remove a relationship.

Requires authentication

Description

Deletes a relationship by its ID. This is a hard delete – the relationship is permanently removed.

Use ts.rel.list to find the relation ID before deleting.

Parameters

NameTypeRequiredDefaultDescription
idstringYesThe relation ID to delete

Response

Returns confirmation of deletion.

{
  "deleted": true,
  "id": "rel_x1y2z3..."
}

Errors

CodeDescription
not_authenticatedNo active login for this session
not_foundRelation with this ID does not exist

Examples

Delete a relation

Remove a relationship between two entities.

Request:

{
  "id": "rel_x1y2z3..."
}

Response:

{
  "deleted": true,
  "id": "rel_x1y2z3..."
}