> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.Contact

# <a id="SuperOffice_WebApi_Data_Contact" /> Class Contact

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for Contact.

```csharp theme={null}
public class Contact : Carrier
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[Contact](SuperOffice.WebApi.Data.Contact.md)

#### Inherited Members

[Carrier.TableRight](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_TableRight),
[Carrier.FieldProperties](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_FieldProperties),
[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Examples

Get Contact 123 using the WebApi client:
<pre><code class="lang-csharp">var configuration = new WebApiConfiguration(url);
var agent = new ContactAgent(configuration);
var contact = agent.GetContact( 123 );</code></pre>

## Constructors

### <a id="SuperOffice_WebApi_Data_Contact__ctor" /> Contact()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public Contact()
```

## Properties

### <a id="SuperOffice_WebApi_Data_Contact_ActiveErpLinks" /> ActiveErpLinks

The number of active erp links

```csharp theme={null}
public virtual int ActiveErpLinks { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_Contact_Address" /> Address

Contact address as  a list of LocalizedFieldList objects. Used to store localized information such as formatted address data. Suitable for passing to an address control for display.

```csharp theme={null}
public virtual Address Address { get; set; }
```

#### Property Value

[Address](SuperOffice.WebApi.Data.Address.md)

### <a id="SuperOffice_WebApi_Data_Contact_AssociateFullName" /> AssociateFullName

The associate's culture formatted fullname (firstname, middleName and lastname)

```csharp theme={null}
public virtual string AssociateFullName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_AssociateId" /> AssociateId

Our contact

```csharp theme={null}
public virtual int AssociateId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_Contact_BusinessName" /> BusinessName

The business list item name

```csharp theme={null}
public virtual string BusinessName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_CategoryName" /> CategoryName

The category list item name

```csharp theme={null}
public virtual string CategoryName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_City" /> City

City corresponding to zip code

```csharp theme={null}
public virtual string City { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_ContactId" /> ContactId

Primary key

```csharp theme={null}
public virtual int ContactId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_Contact_CountryId" /> CountryId

Country

```csharp theme={null}
public virtual int CountryId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_Contact_CountryName" /> CountryName

Name of country in installed language

```csharp theme={null}
public virtual string CountryName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_Department" /> Department

Department

```csharp theme={null}
public virtual string Department { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_DirectPhone" /> DirectPhone

The contacts phone

```csharp theme={null}
public virtual string DirectPhone { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_EmailAddress" /> EmailAddress

The contact email address

```csharp theme={null}
public virtual string EmailAddress { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_EmailAddressName" /> EmailAddressName

Visible field

```csharp theme={null}
public virtual string EmailAddressName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_FormattedAddress" /> FormattedAddress

The contact's address, formatted with linebreaks and spaces into a single string.

```csharp theme={null}
public virtual string FormattedAddress { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_FullName" /> FullName

```csharp theme={null}
public virtual string FullName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_IsOwnerContact" /> IsOwnerContact

Is the contact an owner contact.  This means that all persons on this contact can on only be internal users and not external users.

```csharp theme={null}
public virtual bool IsOwnerContact { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_Contact_Kananame" /> Kananame

Contact kana name, used in Japanese versions only

```csharp theme={null}
public virtual string Kananame { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_Name" /> Name

Contact name

```csharp theme={null}
public virtual string Name { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_Number1" /> Number1

Alphanumeric user field

```csharp theme={null}
public virtual string Number1 { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_Number2" /> Number2

Alphanumeric user field

```csharp theme={null}
public virtual string Number2 { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_OrgNr" /> OrgNr

VAT number or similar

```csharp theme={null}
public virtual string OrgNr { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_URL" /> URL

The internet address to this contact

```csharp theme={null}
public virtual string URL { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Contact_URLName" /> URLName

Visible field

```csharp theme={null}
public virtual string URLName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

## See Also

[ContactAgent](SuperOffice.WebApi.Agents.ContactAgent.md)


## Related topics

- [SuperOffice.WebApi.Data.ContactEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.ContactEntity.md)
- [SuperOffice.WebApi.Data.ContactSummary](/en/api/reference/webapi/SuperOffice.WebApi.Data.ContactSummary.md)
- [SuperOffice.WebApi.Data.Contact GetMyContactRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Contact_GetMyContactRequest.md)
- [SuperOffice.WebApi.Data.Contact GetMyContactsRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Contact_GetMyContactsRequest.md)
- [SuperOffice.WebApi.Data.Contact EnrichContactEntityRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Contact_EnrichContactEntityRequest.md)
- [SuperOffice.WebApi.Data.Contact GetContactSummaryRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Contact_GetContactSummaryRequest.md)
