Skip to content
PartnersMy logo
AffiliatesCampaignsFor companies
EspañolEnglish
Log inSign up
AffiliatesCampaignsFor companies
EspañolEnglish
Log inSign up

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.

Create free accountBrowse campaigns

PartnersMy

  • About us
  • Careers
  • Promotions
  • News

Affiliates / Advertisers / Agencies

  • Welcome bonus
  • Affiliates
  • Advertisers
  • Agencies

Tools

  • Monetize your traffic

Legal

  • Help Center
  • Legal Notice
  • Terms
  • Privacy
  • Cookies
PartnersMy
© 2018–2026 PartnersMy
  1. Home
  2. Advanced API
  3. Webhooks

Advanced API

Webhooks

Receive real-time notifications when events occur in your account.

OverviewAuthenticationProgramsPromotionsTrackingWebhooksErrors
POST/api/v1/webhooks/test

Generate a test conversion.created payload (API key auth).

Webhook management (dashboard)

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.

Available events

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.

Payload format

{ event: string, data: { id, type, amount, status }, timestamp: ISO8601 }

Failed deliveries are retried up to 3 times with exponential backoff.

Security

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.