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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Delete Payment Link

> Deletes a payment link.

`square.deletePaymentLink` deletes a payment link.

## Example

```ts automations/square-delete-payment-link.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { square } from "automate.ax/square"

export default automation("Delete Square Payment Link", () => {
  onDashboardRun({ title: "Delete Square Payment Link" })

  square.deletePaymentLink({
    id: "id",
  })
})
```

## Inputs

Every input accepts a compatible signal. It requires `ORDERS_READ` and `ORDERS_WRITE`.

| Field | Type     | Required | Default | Description                           |
| ----- | -------- | -------- | ------- | ------------------------------------- |
| `id`  | `string` | Yes      | —       | The ID of the payment link to delete. |

Use the official [DeletePaymentLink reference](https://developer.squareup.com/reference/square/checkout-api/delete-payment-link) for provider field semantics and limits.

## Output

Returns the official `Square.DeletePaymentLinkResponse` response as a codec-safe object. Square integer money amounts remain `bigint` values.
