Managing Existing Links

Viewing Your Links

Go to the Links section in your Dashboard to see all your payment links. Each link shows:

  • Link name
  • Creation date
  • Status (enabled/disabled)
  • Number of payments received

Click on a link to see its details and all payments made through it.

Editing a Link

From the Dashboard:

  1. Click on the link you want to edit.
  2. Update the name or other settings.
  3. Save your changes.

Via the API:

curl -X PATCH https://api.inflowpay.xyz/api/link/{linkId} \
  -H "X-Inflow-Api-Key: inflow_priv_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Updated Link Name"
  }'

Enabling / Disabling Links

You can toggle a link's availability:

  • Enabled — Customers can access and pay via the link.
  • Disabled — The link is no longer accessible; customers see an error.

This is useful for time-limited promotions or sold-out products.

Listing Links via the API

curl https://api.inflowpay.xyz/api/link?page=1&limit=20 \
  -H "X-Inflow-Api-Key: inflow_priv_your_key"

Getting Link Details via the API

curl https://api.inflowpay.xyz/api/link/{linkId} \
  -H "X-Inflow-Api-Key: inflow_priv_your_key"

Payment Links vs Subscription Links

Remember that the Links section is for one-time payment links only. For recurring subscriptions, manage your offers in the Subscriptions section. See Sharing Subscription Links for more.