# Delete an Apple Messages for Business routing rule

`DELETE /v1/amb/routing-rules/{routing_rule_id}`

Deletes a routing rule. A conversation already routed by it keeps its queue; only newly created or reopened conversations stop matching it. Deleting a business's default rule leaves it with none, so unmatched conversations route to an empty queue until you create another.

## Code samples

**TypeScript**

```ts
const result = await bird.amb.routingRules.delete(
  "arr_01krdgeqcxet5s7t44vh8rt9mg",
);
console.log(result);
```

Examples: [TypeScript](/docs/api/reference/delete-amb-routing-rule.ts.md) · [Python](/docs/api/reference/delete-amb-routing-rule.py.md) · [Go](/docs/api/reference/delete-amb-routing-rule.go.md) · [PHP](/docs/api/reference/delete-amb-routing-rule.php.md) · [CLI](/docs/api/reference/delete-amb-routing-rule.cli.md) · [MCP](/docs/api/reference/delete-amb-routing-rule.mcp.md) · [cURL](/docs/api/reference/delete-amb-routing-rule.curl.md)

## Path parameters

- `routing_rule_id` (string)

## Related resources

- [Should I use a Bird SDK or call the API directly?](/explained/platform/should-i-use-an-sdk-or-call-the-api-directly) (answer)
- [Build your first integration](/learn/paths/integration) (course)
- [Send your first email](/docs/get-started/send-your-first-email) (docs)

[Get an implementation brief](/learn/workspace?topic=api-basics)
