> ## Documentation Index
> Fetch the complete documentation index at: https://docs.galtea.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Unlink Tests

> Unlink tests from a specification.

## Example

```python theme={"system"}
galtea.specifications.unlink_tests(
    specification_id=specification.id,
    test_ids=[test_id],
)
```

## Parameters

<ResponseField name="specification_id" type="string" required>
  The ID of the specification to unlink tests from.
</ResponseField>

<ResponseField name="test_ids" type="list[string]" required>
  List of test IDs to unlink from the specification.
</ResponseField>
