> ## 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.LandingPageEntity

# <a id="SuperOffice_WebApi_Data_LandingPageEntity" /> Class LandingPageEntity

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

Carrier object for LandingPageEntity.
Per-associate landing page configuration for an entity (type of landing page), including pinned selections and pinned entity records.

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

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[LandingPageEntity](SuperOffice.WebApi.Data.LandingPageEntity.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 LandingPageEntity 123 using the WebApi client:
<pre><code class="lang-csharp">var configuration = new WebApiConfiguration(url);
var agent = new ConfigurationAgent(configuration);
var landingPageEntity = agent.GetLandingPageEntity( 123 );</code></pre>

## Constructors

### <a id="SuperOffice_WebApi_Data_LandingPageEntity__ctor" /> LandingPageEntity()

Default constructor - defaults any enum props to 0.

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

## Properties

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

The associate this landing page belongs to

```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_LandingPageEntity_EntityTableName" /> EntityTableName

Entity table name (contact, person, sale, ...) identifying the type of landing page.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_LandingPageEntity_LandingPageId" /> LandingPageId

Primary key

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_LandingPageEntity_PinnedEntities" /> PinnedEntities

Entity records pinned on this landing page. Item.Id = recordId, Item.Name = display name, Item.Type = entity table name (contact, person, sale, ...).

```csharp theme={null}
public virtual MDOListItem[] PinnedEntities { get; set; }
```

#### Property Value

[MDOListItem](SuperOffice.WebApi.Data.MDOListItem.md)\[]

### <a id="SuperOffice_WebApi_Data_LandingPageEntity_PinnedSelections" /> PinnedSelections

Selections pinned on this landing page. Item.Id = selectionId, Item.Name = selection name.

```csharp theme={null}
public virtual MDOListItem[] PinnedSelections { get; set; }
```

#### Property Value

[MDOListItem](SuperOffice.WebApi.Data.MDOListItem.md)\[]

### <a id="SuperOffice_WebApi_Data_LandingPageEntity_SelectionId" /> SelectionId

The selection to show on the landing page

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

#### Property Value

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

## See Also

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


## Related topics

- [SuperOffice.WebApi.Agents.IConfigurationAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IConfigurationAgent.md)
- [SuperOffice.WebApi.Agents.ConfigurationAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ConfigurationAgent.md)
- [WebAPI changes in SuperOffice 12.0](/release-notes/12/api/changes-webapi-12.0.342.0.md)
- [SuperOffice.WebApi.Data.Configuration GetLandingPageRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Configuration_GetLandingPageRequest.md)
- [SuperOffice.WebApi.Data.Configuration SetLandingPagePinForAssociateRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Configuration_SetLandingPagePinForAssociateRequest.md)
- [SuperOffice.WebApi.Data.CRMScriptEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.CRMScriptEntity.md)
