Turn published invoices or orders into shareable URLs customers can pay on a Dollr-hosted page with mobile money or card — no Dollr account required.
Try in API Reference: Payment link · Receipt link
When to use
- Send a pay link by SMS, email, or WhatsApp
- Redirect customers after checkout to a receipt page
- Hosted checkout without building your own payment form — see Hosted checkout
Requires the source to be published (ACTIVE or later). See Invoices and Orders.
Query parameters
| Parameter | Required | Description |
|---|
source_type | Yes | INVOICE or ORDER (SUBSCRIPTION reserved — not yet supported) |
source_number | Yes | Document number (e.g. INV-2025-0042) |
Payment link
curl "https://api.heydollr.app/v1/links/pay?source_type=INVOICE&source_number=INV-2025-0042" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response: { "url": "https://..." } — redirect or share this URL. The customer completes payment on Dollr’s hosted page.
Receipt link
curl "https://api.heydollr.app/v1/links/receipt?source_type=INVOICE&source_number=INV-2025-0042" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Available after the source reaches PAID status.
Last modified on June 23, 2026