Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.paywise.de/llms.txt

Use this file to discover all available pages before exploring further.

Available Event Types

Subscribe to the events relevant to your integration. Each event type corresponds to a specific action in the paywise system.

Mandate Events

Event TypeDescription
mandate.createdA new mandate has been created for your company
mandate.updatedMandate data has changed (e.g. debtor address, contact details)
mandate.status_updatedThe processing status of a mandate has changed (e.g. reminder sent, collection initiated, court proceedings started)
mandate.closedA mandate has been closed (e.g. fully paid, discontinued, or written off)
mandate.balance_updatedThe balance of a mandate has changed (e.g. after a payment, cost calculation, or interest accrual)
mandate.message_createdA new message has been added to a mandate (e.g. debtor correspondence, internal notes)

Claim Events

Event TypeDescription
claim.createdA new claim has been submitted
claim.updatedClaim data has changed (e.g. amount, due date, or line items)

Payment Events

Event TypeDescription
payment.createdA payment has been reported or received for a mandate
payment.updatedPayment information has changed (e.g. allocation to claims, confirmation status)

Statement Events

Event TypeDescription
statement.createdA new statement has been created
statement.updatedStatement data has changed (e.g. published, canceled)

Request to Client Events

Event TypeDescription
request_to_client.createdA new request to the client (“Rückfrage”) has been published
request_to_client.answeredA request to the client has been answered

Subscribing to Events

When creating a webhook endpoint, specify the events you want to receive as an array:
{
  "url": "https://your-domain.com/webhooks",
  "events": [
    "mandate.created",
    "mandate.status_updated",
    "payment.created"
  ]
}
You can subscribe to as many event types as needed. Only events you subscribe to will be delivered to your endpoint.
You can update the subscribed events for an existing endpoint at any time via the API using a PATCH request.

Access Mode

Events are strictly isolated by access mode:
  • Test webhooks only receive events from test API operations
  • Production webhooks only receive events from production API operations
The access mode is determined by the API token used when creating the webhook endpoint.