---
sidebar_position: 8
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get field (email)
Gets the description of an email field
`Function GetEmailField(Val Name) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Name | --title | String | ✔ | Field name |
Returns: Structure - Field description
```bsl title="1C:Enterprise/OneScript code example"
Result = OPI_Airtable.GetEmailField("Email");
```
```bash
oint airtable GetEmailField \
--title "Email"
```
```batch
oint airtable GetEmailField ^
--title "Email"
```
```json title="Result"
{
"name": "Email",
"type": "email"
}
```