Kushki Developer Portal
  1. SMARTLINKS V2
Kushki Developer Portal
  • Back to home
  • Perú 🇵🇪
  • Bienvenidos
  • ONLINE PAYMENTS
    • CARD
      • 1. Request a card token
      • 2. Make a charge or deferred charge
      • 3. Void a transaction
      • 4. Refund a transaction
      • 5. Request deferred options
      • 6. Authorize payments
      • 7. Capture an authorized payment
      • 8. Bin Info
      • 9. Bin Info V2
      • 10. Validate OTP
      • 5. Request deferred options
      • 2. Make a charge or deferred charge
      • 1. Request a card token
      • 8. Bin Info
      • 7. Capture an authorized payment
      • 10. Validate OTP
      • 4. Refund a transaction
      • 9. Bin Info V2
      • 6. Authorize payments
      • 3. Void a transaction
    • ONE-CLICK & SCHEDULED PAYMENTS
      • 1. Request a recurring charge token
      • 2. Create a recurring charge
      • 3. Update recurring charge card data
      • 4. Make an One-click payment
      • 5. Cancel a recurring charge
      • 6. Update a recurring charge
      • 7. Add a temporary charge or discount
      • 8. Authorize payments
      • 9. Capture an authorized payment
      • 10. Get recurring charge Info
      • 9. Capture an authorized payment
      • 7. Add a temporary charge or discount
      • 8. Authorize payments
      • 5. Cancel a recurring charge
      • 4. Make an One-click payment
      • 1. Request a recurring charge token
      • 2. Create a recurring charge
      • 10. Get recurring charge Info
      • 6. Update a recurring charge
      • 3. Update recurring charge card data
    • TRANSFER IN
      • 2. Request a Transfer In token
      • 3. Init Transaction
      • 4. Get Status
      • 2. Request a Transfer In token
      • 4. Get Status
      • 3. Init Transaction
    • CASH IN
      • 1. Request a cash in token
      • 2. Init Transaction
      • 3. Transaction Status
      • 2. Init Transaction
      • 1. Request a cash in token
      • 3. Transaction Status
    • SMARTLINKS V2
      • 1. Create a Smartlink
        POST
      • 2. Get a Smartlink
        GET
      • 3. Delete a Smartlink
        DELETE
      • 4. Update a Smartlink
        PATCH
      • 4. Update a Smartlink
        PATCH
      • 2. Get a Smartlink
        GET
      • 3. Delete a Smartlink
        DELETE
      • 1. Create a Smartlink
        POST
    • ANALYTICS
      • 1. Get transactions list
      • 1. Get transactions list
    • GATEWAY STATUS
      • 1. Get gateway status
      • 1. Get gateway status
    • COMMISSIONS
      • 1. Get Commission Configuration
      • 1. Get Commission Configuration
    • PAYMENT CREDENTIALS
      • 1. Create a credential
      • 2. Search credentials
      • 3. Advanced search
      • 4. Activate or deactivate
      • 5. Delete credential
      • 6. Update credential
      • 7. Regenerate a credential
      • 6. Update credential
      • 7. Regenerate a credential
      • 2. Search credentials
      • 4. Activate or deactivate
      • 3. Advanced search
      • 1. Create a credential
      • 5. Delete credential
    • PAYMENT BUTTON
      • 1. Create a payment button
      • 1. Create a payment button
  • CARD PRESENT PAYMENTS (API RAW)
    • Get BIN Info
    • Balance inquiries
    • BIN info V2
    • Request deferred options
  1. SMARTLINKS V2

4. Update a Smartlink

PATCH
/smartlink/v2/smart-link/{{smartlinkId}}

Request

Header Params

Body Params application/json

Examples

Responses

🟠400
application/json
Body

🟠403
🟢204
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request PATCH '/smartlink/v2/smart-link/{{smartlinkId}}' \
--header 'Private-Merchant-Id: {{PE-Private-Merchant-Id}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "publicMerchantId": "{{PE-Public-Merchant-Id}}",
    "merchantName": "Global",
    "paymentConfig": {
        "paymentType": "mixed",
        "amount": {
            "currency": "PEN",
            "subtotalIva": 0,
            "subtotalIva0": 50,
            "iva": 0
        },
        "paymentMethod": [
            "cash",
            "credit-card",
            "transfer",
            "subscription"
        ],
        "subscriptionOptions": {
            "amount": {
                "currency": "PEN",
                "subtotalIva": 0,
                "subtotalIva0": 50,
                "iva": 0
            },
            "periodicity": "monthly",
            "planName": "",
            "terms": ""
        },
        "mixedOptions" : {
            "numberOfFees": 0,
            "periodicity": "monthly",
            "subscriptionDay": 0
        }
    },
    "generalConfig": {
        "productName": "Plan Hogar",
        "description": "<p>Cobertura completa</p>",
        "productImage": "https://kushki-static.s3.amazonaws.com/smartlinks/product-image.png",
        "brandLogo": "https://kushki-static.s3.amazonaws.com/smartlinks/logo.png",
        "executionLimit": 0,
        "showTimer": false,
        "enabled": true,
        "termsAndConditions": "",
        "promotionalText": "",
        "buyButtonText": "Pagar"
    },
    "styleAndStructure": {
        "structure": "checkout",
        "coverModel": "center",
        "buttonStyle": "round",
        "primaryColor": "#00E6B2",
        "secondaryColor": "#ca0fea"
    },
    "contact": {
        "email": "soporte@soporte.com",
        "phoneNumber": "988238833"
    },
    "formConfig": [
        {
            "label": "Nombres y apellidos",
            "type": "input",
            "split": false,
            "required": true,
            "disabled": false,
            "name": "nombresyapellidos",
            "placeholder": "Nombres y apellidos",
            "value": ""   
        },
        {
            "split": true,
            "name": "documentodeid",
            "disabled": false,
            "label": "Documento de Id.",
            "placeholder": "Documento de Id.",
            "type": "input",
            "required": false
        },
        {
            "split": true,
            "name": "email",
            "disabled": false,
            "label": "E-mail",
            "placeholder": "E-mail",
            "type": "input",
            "required": false
        }
    ],
    "fullResponse": "v2",
  "version": "V2"
    
}'
Response Response Example
400 - 400 - WCH001 - Cuerpo de la petición inválido
{
    "code": "WCH001",
    "message": "Cuerpo de la petición inválido."
}
Modified at 2026-01-06 19:33:02
Previous
3. Delete a Smartlink
Next
4. Update a Smartlink
Built with