/v1/claimsForderung anlegen
Empfohlener Standard-Endpoint. Akzeptiert flache snake_case-Felder, optional inkl. Dokumenten als Base64.
| Feld | Typ | Hinweis |
|---|---|---|
original_amount | number | Hauptforderung (netto, ohne Gebühren) |
currency | string(3) | ISO 4217, Default EUR |
invoice_number, invoice_date, due_date | string | Rechnungsdaten |
service_mode | enum | monitoring | inkasso (Default: inkasso) |
external_reference | string ≤120 | Ihre interne Forderungs-ID |
debtor.type | enum | private | business |
debtor.address.country | string(2) | ISO-3166 alpha-2 |
documents[] | array | Optional: invoice, contract, dunning_letter, … |
pre_collection_items[] | array | Vorgelagerte Mahnkosten/Auslagen (type, amount, date, description) |
Request
curl -X POST https://ergokonzept-inkasso.com/api/public/v1/claims \
-H "x-api-key: lk_IHR_API_KEY_HIER" \
-H "Content-Type: application/json" \
-d '{
"original_amount": 1499.00,
"currency": "EUR",
"invoice_number": "RG-2026-00123",
"invoice_date": "2026-03-15",
"due_date": "2026-04-15",
"service_description": "Webentwicklung März 2026",
"service_mode": "inkasso",
"external_reference": "RG-2026-00123",
"debtor": {
"type": "private",
"salutation": "Herr",
"first_name": "Max",
"last_name": "Mustermann",
"email": "max@example.com",
"phone": "+49 30 1234567",
"address": {
"street": "Musterstraße",
"house_number": "12a",
"postal_code": "10115",
"city": "Berlin",
"country": "DE"
}
},
"documents": [
{
"file_type": "invoice",
"filename": "rechnung-2026-00123.pdf",
"mime_type": "application/pdf",
"content_base64": "JVBERi0xLjQK..."
}
]
}'Antwort (Beispiel)
{
"data": {
"id": "f3e2a1b4-…",
"reference": "FOR-2026-000123",
"status": "new",
"service_mode": "inkasso",
"original_amount": "1499.00",
"open_amount": "1499.00",
"created_at": "2026-05-29T10:12:34Z"
}
}