---
title: "Get payment link details by ID"
method: GET
path: "/api/v1/payment-links/{id}"
tags: ["Payment Links"]
---

# Get payment link details by ID

`GET /api/v1/payment-links/{id}`

Get payment link details by ID

## Path parameters

- `id` string, uuid, required — Payment link ID

## Response `200`

Success

- PaymentLinkDetailResponse
  - `success` boolean, required — Indicates if the request was successful
  - `data` object, required
    - `id` string, uuid, required
    - `merchant` object, required
      - `id` string, uuid, required
      - `brand_name` string, required
    - `amount` string, required — Amount in decimal format (e.g. "10.00")
    - `currency` string, required — Currency code (ISO 4217)
    - `payment_reference` string, required
    - `order_id` string, nullable, required
    - `status` 'active' | 'used' | 'expired' | 'cancelled', required — Payment link status
    - `link_type` 'single_use' | 'reusable', required
    - `views_count` integer, required
    - `first_viewed_at` string, date-time, nullable, required
    - `expires_at` string, date-time, required
    - `created_at` string, date-time, required
    - `transaction_id` string, uuid, nullable, required
    - `locale` string, required
    - `metadata` object, nullable, required
    - `payment_link_url` string, uri, nullable, required
    - `redirect_urls` object, nullable, required
      - `success_url` string, uri, required — URL to redirect customer to after successful payment (HTTPS required in production)
      - `failure_url` string, uri, required — URL to redirect customer to after failed payment (HTTPS required in production)

## Other responses

- `401` — Unauthorized
- `404` — Not Found

---

[API](https://skmtc.net/banqzinc/apis/quidkey-api.md) · [All operations](https://skmtc.net/banqzinc/apis/quidkey-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/banqzinc/quidkey-api/revisions/f86d2bdbcb08/schema)
