Events
| Event | Description |
|---|---|
payout.created | New payout is created for an affiliate |
payout.updated | Payout is modified (universal event) |
payout.paid | Payout is marked as completed |
payout.failed | Payout fails |
payout.deleted | Payout is deleted |
Payout Status Values
| Status | Description |
|---|---|
PENDING | Payout created, awaiting processing |
PROCESSING | Payout is being processed |
COMPLETED | Payout successfully completed |
FAILED | Payout failed |
Payload
string
Unique event identifier
string
Event type (e.g.,
payout.paid)string
ISO 8601 timestamp of when the event occurred
object
Event payload data.
Show Data Object Properties
Show Data Object Properties
string
Unique identifier for the payout
string
The affiliate receiving this payout
string
The program this payout belongs to
number
Sequential invoice number for the payout
number
Total payout amount
string
Payout status (see table above)
boolean
Whether this is an auto-managed payout
string | null
ISO 8601 timestamp when paid
string
ISO 8601 timestamp
string
ISO 8601 timestamp
Example Payloads
payout.created
{
"id": "evt_abc123",
"type": "payout.created",
"createdAt": "2024-01-15T10:30:00.000Z",
"data": {
"payoutId": "pay_xyz789",
"affiliateId": "aff_abc123",
"affiliateProgramId": "prog_def456",
"invoiceNumber": 1042,
"amount": 250.00,
"status": "PENDING",
"isManagedPayout": false,
"paidAt": null,
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:30:00.000Z"
}
}
payout.paid
{
"id": "evt_abc123",
"type": "payout.paid",
"createdAt": "2024-01-15T10:30:00.000Z",
"data": {
"payoutId": "pay_xyz789",
"affiliateId": "aff_abc123",
"affiliateProgramId": "prog_def456",
"invoiceNumber": 1042,
"amount": 250.00,
"status": "COMPLETED",
"isManagedPayout": true,
"paidAt": "2024-01-15T14:00:00.000Z",
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T14:00:00.000Z"
}
}
payout.failed
{
"id": "evt_abc123",
"type": "payout.failed",
"createdAt": "2024-01-15T10:30:00.000Z",
"data": {
"payoutId": "pay_xyz789",
"affiliateId": "aff_abc123",
"affiliateProgramId": "prog_def456",
"invoiceNumber": 1042,
"amount": 250.00,
"status": "FAILED",
"isManagedPayout": true,
"paidAt": null,
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T14:00:00.000Z"
}
}
