--- sidebar_position: 9 description: Get field (phone) and other functions to work with Airtable in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Airtable] --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Get field (phone) Gets the description of a phone number field `Function GetPhoneField(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.GetPhoneField("Phone"); ``` ```bash oint airtable GetPhoneField \ --title "Phone" ``` ```batch oint airtable GetPhoneField ^ --title "Phone" ``` ```json title="Result" { "name": "Phone", "type": "phoneNumber" } ```