Skip to main content

Quickstart

Create your first case in 2 minutes.

Prerequisites

Get your API key from Creditor Portal → API Keys. See Authentication for details.

Create a Test Case

curl -X POST https://customer-api.debitura.com/cases \
-H "Content-Type: application/json" \
-H "XApiKey: YOUR_API_KEY" \
-d '{
"isTest": true,
"currencyCode": "EUR",
"date": "2025-01-15",
"amountToRecover": 1000.00,
"debtor": {
"type": "Company",
"name": "Test Company",
"address": "Test Street 1",
"city": "Berlin",
"countryAlpha2": "DE"
}
}'

Success Response

{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"referenceCode": "DEB-2025-12345",
"status": "Active",
"isTestCase": true
}

You've created a test case. It won't trigger real collection activity.

Next Steps