# Delete Relation

## API Name

API Name: Element – Delete Relation

***

## Overview

This API deletes an existing relation between a source element and a target element.

MBSE Core uses this API to:

* Remove structural links
* Remove dependencies
* Remove associations
* Maintain model consistency during synchronization

Connector responsibility:

* For the given source element and relation details:
  * Delete the corresponding relation in the end system.
* If the end system models relations as elements:
  * Delete the relation element.
* If the end system models relations implicitly:
  * Remove the link using the appropriate API.
* Ensure deletion is scoped to the given project and branch.

***

### API URI

```bash
DELETE: /mbse/api/1.0/elements/{elementId}/relations
    ?projectId={projectId}
    &elementTypeId={elementTypeId}
    &branchId={branchId}
    &relationType={relationType}
    &targetElementId={targetElementId}
    &targetElementTypeId={targetElementTypeId}
```

***

### Path Parameters

| Name      | Mandatory | Type   | Description                               |
| --------- | --------- | ------ | ----------------------------------------- |
| elementId | True      | String | ID of the source element in the relation. |

***

### URI Parameters

| Name          | Mandatory | Type   | Description                                                                |
| ------------- | --------- | ------ | -------------------------------------------------------------------------- |
| projectId     | True      | String | ID of the project.                                                         |
| elementTypeId | True      | String | ID of the source element type.                                             |
| branchId      | False     | String | ID of the branch. If omitted, default branch behavior applies.             |
| relationType  | True      | String | Type of relation (e.g., Satisfied By, Verifies, Abstraction, dependency, r |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://opstech.gitbook.io/opstech-docs/7.223/mbse-connector-sdk-index/mbse-sdk-connector-apis/relation-apis/delete-relation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
