GET {{baseURL}}/pay-int-api/quick-payments/reusable
This endpoint returns a list of reusable links.
The links may be valid or expired.
The request may be filtered to limit returns to the specified search.
See Also:
To create a reusable payment link, see POST /pay-int-api/quick-payments/reusable.
To retrieve details of a reusable payment link, see GET /pay-int-api/quick-payments/reusable/{quickPaymentId}.
To activate a payment link, see POST /pay-int-api/quick-payments/{quickPaymentId}/activate.
To deactivate a payment link, see POST /pay-int-api/quick-payments/{quickPaymentId}/deactivate.
Specifies the page number of the returned search results.
A page is considered each set of the pageSize value.
The maximum page value is the pageSize divided by the total count rounded up. The count is zero-based. For example, if pageSize is 50 and the total is 130, there are three pages. The maximum page value is 2.
Values above the maximum page value will complete successfully but not return any items.
Example: 0
Specifies the number of items for each page of the returned search results.
A page is considered each set of the pageSize value.
The maximum page value is the pageSize divided by the total count rounded up. The count is zero-based. For example, if pageSize is 50 and the total is 130, there are three pages. The maximum page value is 2.
Example: 50
- Mock serverhttps://developer.flute.com/_mock/api-reference/pay-int-api/quick-payments/reusable
- Sandbox environmenthttps://sandbox.api.flute.com/pay-int-api/quick-payments/reusable
- Production environmenthttps://api.flute.com/pay-int-api/quick-payments/reusable
curl -i -X GET \
'https://developer.flute.com/_mock/api-reference/pay-int-api/quick-payments/reusable?page=0&pageSize=15&orderBy=string&asc=true&status=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'x-api-version: 1.0'{ "items": [ { "id": "d9d78a43-bcb6-58d5-c21f-234197b54186", "amount": 45.99, "status": 0, "createdOn": "2026-02-19T20:24:52.934Z", "totalTransactionsAmount": 250, "shortUrl": "https://pay.flute.example.com/qp/d9d78a43" } ], "total": 5 }