RemoveAssociation
Deletes a previously established link between two entities, managed via their navigation properties.
Input
| Name | Type | Required | Description |
| FromId | String | True | The unique identifier (Id) of the source entity for which you want to remove an association. |
| FromTable | String | True | The name of the table containing the source entity. For example, if the FromId belongs to a record in the Customers table, set this parameter to 'Customers'. |
| ToNavigationProperty | String | True | The name of the navigation property representing the relationship to be removed. This property can be retrieved using the ListNavigationProperties procedure. |
| ToId | String | True | The unique identifier (Id) of the target entity in the associated table defined by the navigation property. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | A boolean value indicating whether the removal operation was successful (true) or not (false). |