The Contact Object
A contact (reference) refers to all known contact (a third party) involved in the collection process.
Attributes
| Attributes | Type | Description | 
|---|---|---|
firstName | 
string | The first name of the reference contact. | 
lastName | 
string | The last name of the reference contact. | 
type | 
enum | This represents the relationship between the reference contact and the customer. | 
liable | 
boolean | This indicates whether a person is liable or not. In this way, non-liable persons such as lawyers or keepers can also be handed over | 
address | 
object | The address of the customer or reference contact. | 
communicationChannel | 
object | Contact channels of the customer. | 
referenceContacts": [
        {
            "firstName": "Yesenia",
            "lastName": "Abshire",
            "type": "lawyer",
            "address": {
                "street": "056 Haven Islands",
                "zipCode": "07339-9036",
                "city": "North Doug",
                "countryCode": "BM",
                "careOf": "Niko Kertzmann"
            },
            "communicationChannels": [
                {
                    "type": "PHONE",
                    "value": "+61 2536 83656598"
                },
                {
                    "type": "EMAIL",
                    "value": "Yesenia.Abshire90@yahoo.com"
                }
            ]
        }
    ]
Do you find this page helpful?