# delete_domain_pointer

> Remove a domain pointer (an alias or parked domain) from a domain.

- Tier: D
- Required scope: write:hosting
- Annotations: destructiveHint, idempotentHint
- Docs: https://api.inleed.com/tools/delete-domain-pointer

## Description

Remove a domain pointer (an alias or parked domain) from a domain. It detaches the pointer only — it does not delete the pointed-at domain or its DNS zone, and is easily recreated with `create_domain_pointer`. Requires the `write:hosting` scope. To see the current pointers use `list_domain_pointers`.

## Input schema

- `input` — string (required). A domain, email address, website URL, numeric service id, or hosting-account username the customer actually owns. Resolved to the owning account automatically; the resolved target is echoed back in the response.
- `from` — string (required). The pointer/alias domain to detach, e.g. old-example.com.

## Example call

```json
{
  "name": "delete_domain_pointer",
  "arguments": {
    "input": "example.se",
    "from": "example.se"
  }
}
```

