list_payment_links
List payment links newest first, with optional status filters to review paid orders or find abandoned checkouts.
Instructions
List your payment links, newest first, optionally filtered by status.
Use statuses=['Complete', 'Delivered'] to review paid orders, or statuses=['Pending']
to find checkouts a buyer started but never finished; omit `statuses` for every state.
When you already know the reference IDs, use `get_payment_link` or
`get_payment_links_batch` instead of paging through this.
Wayl returns no total count, so do not treat the number of rows as the number of
orders. Keep paging with `nextSkip` while `hasMore` is true — it is a heuristic, true
whenever a full page came back.
Rows are raw Wayl records: `total` is a string, and only status Complete or Delivered
means paid. Nothing here reports which environment a link belongs to, so test and live
orders look identical — confirm with `check_order_paid` before delivering anything.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | How many to skip before this page starts. Pass the `nextSkip` returned by the previous call. | |
| take | No | How many links to return. | |
| statuses | No | Filter by payment status. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||