Skip to main content

Creating Payment Links as a Partner

Partners can create payment links (fixed or dynamic) on behalf of their stores using the same POST /v1/links endpoint with all three authentication headers.

Example

curl -X POST "https://api.wava.co/v1/links" \
  -H "merchant-key: STORE_MERCHANT_KEY" \
  -H "X-API-Key: YOUR_PARTNER_API_KEY" \
  -H "X-API-Secret: YOUR_PARTNER_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "amount": 80000,
    "description": "Monthly service fee",
    "currency": "COP",
    "order_key": "partner-invoice-001"
  }'
The response and behavior are identical to standard payment links. See Payment Links for details on fixed vs. dynamic links and redirect configuration.