Join PartnersMy
The platform where brands and affiliates grow together.
Competitive commissions, real-time tracking and secure payouts. Everything you need to monetize your traffic or scale your affiliate program.
Join PartnersMy
Competitive commissions, real-time tracking and secure payouts. Everything you need to monetize your traffic or scale your affiliate program.
Advanced API
Receive real-time notifications when events occur in your account.
/api/v1/webhooks/testGenerate a test conversion.created payload (API key auth).
Webhook CRUD is at /api/webhooks and requires dashboard session (JWT), not API key.
Create, list, update and delete webhooks from the Webhooks section of the dashboard.
HMAC secret rotation: PUT /api/webhooks/{id}/rotate-secret.
Delivery history: GET /api/webhooks/{id}/deliveries.
Replay failed deliveries: POST /api/webhooks/{deliveryId}/replay.
Bulk retry: POST /api/webhooks/retry-failed.
conversion.created: triggered when a conversion is registered.
conversion.approved: triggered when the advertiser approves a commission.
conversion.rejected: triggered when a commission is rejected.
partnership.created: triggered when an affiliate applies to a program.
{ event: string, data: { id, type, amount, status }, timestamp: ISO8601 }
Failed deliveries are retried up to 3 times with exponential backoff.
Each delivery includes an X-Webhook-Signature header with HMAC-SHA256.
Verify the signature with your API key before processing the event.
You can rotate the secret without interrupting deliveries.