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

# Payment links

> Shareable checkout pages and the payments made through them

Create payment links your customers can pay by card or other methods, and follow the payments made through them. Payment links need a connection to the payment provider, which `payment-links connect` sets up once.

| Command                               | What it does                                                                                                         | OAuth scope          |
| ------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | -------------------- |
| `qonto payment-links connect`         | [Connect to the payment links provider](/api-reference/business-api/payments-transfers/payment-links/connect)        | `payment_link.write` |
| `qonto payment-links connection`      | [Get the connection status](/api-reference/business-api/payments-transfers/payment-links/get-connection)             | `payment_link.read`  |
| `qonto payment-links create`          | [Create a payment link](/api-reference/business-api/payments-transfers/payment-links/create)                         | `payment_link.write` |
| `qonto payment-links deactivate <id>` | [Deactivate a payment link](/api-reference/business-api/payments-transfers/payment-links/deactivate)                 | `payment_link.write` |
| `qonto payment-links get <id>`        | [Get a payment link](/api-reference/business-api/payments-transfers/payment-links/show)                              | `payment_link.read`  |
| `qonto payment-links list`            | [List payment links](/api-reference/business-api/payments-transfers/payment-links/index)                             | `payment_link.read`  |
| `qonto payment-links payment-methods` | [List available payment methods](/api-reference/business-api/payments-transfers/payment-links/index-payment-methods) | `payment_link.read`  |
| `qonto payment-links payments <id>`   | [List payments for a payment link](/api-reference/business-api/payments-transfers/payment-links/index-payments)      | `payment_link.read`  |

`payment-links create` takes a JSON document with `--body`: a link is created either from a basket of items or from an existing client invoice.

**Try it**

```bash theme={null}
# Is the provider connected?
qonto payment-links connection

# Links that have not been paid yet
qonto payment-links list --status open

# Payments made through one link
qonto payment-links payments <payment-link-id>
```
