Skip to main content

Credit Note Processed

Event Type

credit_note_processed

Company and agency webhooks are supported. Agency delivery is restricted to records belonging to that agency. MSP-to-client records are excluded from agency delivery.

When It Fires

Sent when a credit note is processed. Company webhooks receive events for their records; agency delivery is limited to records belonging to that agency. MSP-to-client records are excluded from agency delivery. Fetch full details from GET /credit-notes/{id}.

Fetch the Full Object

The payload contains the full object ID in data.creditNote.id. Fetch the record with GET /credit-notes/{id}.

Delivery

  • Method: POST
  • Content-Type: application/json
  • Delivery guarantee: at-least-once

Delivery Headers

HeaderDescription
Content-Typeapplication/json
X-Requidex-Eventcredit_note_processed
X-Requidex-Event-IdUnique event delivery ID
X-Requidex-SignatureHMAC SHA-256 signature of the raw request body
X-Requidex-TimestampUTC timestamp used when signing the payload

See signature verification and retry behavior for the shared delivery contract.

Payload Fields

FieldTypeRequiredDescription
idstringYesUnique event ID
typestringYescredit_note_processed
createdAtstringYesEvent timestamp in ISO 8601 format
data.creditNote.idstringYesFull object ID

Payload Example

{
"id": "evt_01K1WEBHOOKEXAMPLE",
"type": "credit_note_processed",
"createdAt": "2026-09-10T12:00:00.000Z",
"data": {
"creditNote": {
"id": "507f1f77bcf86cd799439013"
}
}
}