# Retrieves details of a reusable link

<span class="api-endpoint">POST {{<a href="#urlbases">baseURL</a>}}/pay-int-api/quick-payments/reusable/{{quickPaymentId}}</span>
This endpoint retrieves details of a specified reusable payment.
The link may be valid or expired.
<span class="api-seealso">See Also:</span><br>
To create a reusable payment link, see `POST /pay-int-api/quick-payments/reusable`<br>
To deactivate a link, see `POST /pay-int-api/quick-payments/{{quickPaymentId}}/deactivate`<br>
To get details for a specified reusable link, see `POST /pay-int-api/quick-payments/reusable/{{quickPaymentId}}`}}`

Endpoint: GET /pay-int-api/quick-payments/reusable/{quickPaymentId}
Version: V1
Security: Bearer

## Path parameters:

  - `quickPaymentId` (string, required)
    Specifies the payment link identifier.

This value is returned from either:
* `POST /pay-int-api/quick-payments/one-time`
* `POST /pay-int-api/quick-payments/reusable`

## Header parameters:

  - `x-api-version` (string)

## Response 200 fields (application/json):

  - `id` (string)

  - `amount` (number)

  - `status` (integer)
    Payment link status.
Possible values:
| Status ID | Status | Description |
|  --- | --- | --- |
| 1 | Active | The link is active and can be used. |
| 2 | Inactive | The link is inactive and cannot be used. |
| 3 | Expired | The link is inactive by timing out. |
| 4 | Completed | The link is inactive by having been used successfully. |

  - `shortUrl` (string)

  - `totalTransactionsAmount` (number)

  - `totalTransactionsCount` (integer)

  - `createdOn` (string)
    Indicates the date-time (in an ISO 8601 date-time UTC format) when the reusable quick payment was created.

Examples: 2026-02-19T20:24:52.934Z
    Example: 2026-02-19T20:24:52.934Z

