Taking PaymentPayment Link
Taking Payment

Core Features of Payment Link

Explore the essential features of Payment Link, including customizable links, analytics, and security options for effective payment management.

Overview

Payment Link provides essential tools for creating and managing payment collection links. You can customize designs to match your brand, track performance with detailed analytics, set up recurring billing, and protect transactions with built-in security. These features help you streamline payments without complex integrations.

Match your brand by adjusting colors, adding logos, and selecting layouts. Access customization from the dashboard under Link Settings.

Start with preset themes or upload your logo. Set primary color to #d39e16 for TDF Digital branding.

Test customizations in preview mode before publishing to ensure mobile responsiveness.

Tracking Analytics and Reports

Gain insights into link performance. View metrics like click-through rates, conversion rates, and total revenue.

const response = await fetch('https://api.example.com/v1/analytics/links/{linkId}', {
  headers: {
    'Authorization': `Bearer ${YOUR_API_KEY}`
  }
});
const data = await response.json();
console.log(data.revenue); // e.g., 1250.50

Managing Recurring Payments

Set up subscriptions easily for repeat customers.

Create Subscription Link

Navigate to dashboard, select "Recurring" template.

Configure Plan

Define amount (e.g., $29/month), interval, and trial period.

Embed or Share

Generate link or embed code for your site.

// Example API call to create recurring link
const link = await fetch('https://api.example.com/v1/payment-links', {
  method: 'POST',
  body: JSON.stringify({
    type: 'recurring',
    amount: 29.00,
    interval: 'month',
    currency: 'USD'
  })
});

Security Features

Protect your payments with fraud detection, PCI compliance, and 3D Secure. Enable features like velocity checks and IP blocking.

Always use HTTPS endpoints and store YOUR_API_KEY securely—never in client-side code.

Next Steps