Skip to main content

ListPaymentLinkTemplatesResponse

successbooleanrequired
Example: true
data object[]required
  • Array [
  • idintegerrequired

    Payment link template ID

    Example: 17
    namestringrequired

    Internal template name

    Example: Premium subscription
    titlestringrequired

    Public-facing template title

    Example: Premium subscription
    descriptionstringrequired

    Public-facing template description

    Example: Monthly plan
    amountdecimalnullable

    Default amount configured on the template

    Example: 250
    currencystringrequired

    Default template currency

    Example: ARS
    enabledbooleanrequired

    Whether the template is available for use

    Example: true
    paymentLinkTypestringrequired

    Template pricing mode

    Example: fixedPriceProduct
    supportedPaymentsstring[]required

    Payment rails enabled by the template configuration

    Possible values: [crypto, bank_transfer, credit_card, argentine_bank]

    Example: ["crypto","bank_transfer","argentine_bank"]
  • ]
  • ListPaymentLinkTemplatesResponse
    {
    "success": true,
    "data": [
    {
    "id": 17,
    "name": "Premium subscription",
    "title": "Premium subscription",
    "description": "Monthly plan",
    "amount": 250,
    "currency": "ARS",
    "enabled": true,
    "paymentLinkType": "fixedPriceProduct",
    "supportedPayments": [
    "crypto",
    "bank_transfer",
    "argentine_bank"
    ]
    }
    ]
    }