Creating Payment Links as a Partner
Partners can create payment links (fixed or dynamic) on behalf of their stores using the samePOST /v1/links endpoint with all three authentication headers.
Create payment links on behalf of onboarded stores.
POST /v1/links endpoint with all three authentication headers.
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"
}'