Skip to main content
GET
/
api
/
v1
/
payment-links
/
{id}
Get payment link details by ID
curl --request GET \
  --url https://core.quidkey.com/api/v1/payment-links/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "redirect_urls": {
      "success_url": "https://example.com/payment/success",
      "failure_url": "https://example.com/payment/failure"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Payment link ID

Response

Success

success
boolean
required

Indicates if the request was successful

Example:

true

data
object
required