Basic Contact Info Information Element

The Basic Contact Information IE Base Type holds contact information about a contact (an individual) who isn’t registered as an Actor in RealEquity (yet). It’s a very flexible data type with no validation on the property values.

Properties

Property Type Description
firstName String (Optional) The first name of the contact.
lastName String (Optional) The last name of the contact.
emailAddress String (Optional) The contacts’ e-mail address.
phoneNumber String (Optional) The contacts’ phone number.
addressLine1 String (Optional) The first part of the contacts’ address.
addressLine2 String (Optional) The last part of the contacts’ address.
zipCode String (Optional) The ZIP code of the contacts’ address.
city String (Optional) The city of the contacts’ address.
region String (Optional) The region of the contacts’ address.
country String (Optional) The country of the contacts’ address.

Example

The properties “namespace” and “parentId” are inherited from the Data Node Type. Here, they’re used to define the created Data Node as a Basic Contact Information IE, and to make it a child of a Request.

{
    "namespace": "dk.realequity.ie.basiccontactinfo.default",
    "parentId": "17e02791-4f24-44de-b1af-3817fb729a60",
    "firstName": "John",
    "lastName": "Doe",
    "emailAddress": "kontakt@cb.dk",
    "phoneNumber": "+45 43323300",
    "addressLine1": "Kingosvej 1",
    "zipCode": "2630",
    "city": "Taastrup",
    "country": "Denmark"
}