Debtors#
Debtors represent individuals or companies with outstanding debts. Debtor information is embedded within Collection Cases.
The Debtor object#
| Attribute | Type | Description |
|---|---|---|
type | enum | company or private |
name | string | Full name or company name |
contact_person | string | Contact person (companies only) |
email | string | Email address |
phone | string | Phone number |
address | object | Physical address |
address.line1 | string | Street address |
address.line2 | string | Additional address line |
address.city | string | City |
address.state | string | State/province |
address.postal_code | string | Postal code |
address.country | string | ISO 3166-1 alpha-2 country code |
country | string | Country of residence/registration |
tax_id | string | Tax identification number |
registration_number | string | Company registration number |
Private Debtor#
{
"type": "private",
"name": "John Smith",
"email": "john.smith@example.com",
"phone": "+49 170 1234567",
"address": {
"line1": "Friedrichstraße 123",
"city": "Berlin",
"postal_code": "10117",
"country": "DE"
},
"country": "DE"
}Company Debtor#
{
"type": "company",
"name": "Smith Enterprises GmbH",
"contact_person": "John Smith",
"email": "accounting@smithenterprises.de",
"phone": "+49 30 9876543",
"address": {
"line1": "Unter den Linden 45",
"city": "Berlin",
"postal_code": "10117",
"country": "DE"
},
"country": "DE",
"tax_id": "DE123456789",
"registration_number": "HRB 12345"
}