--- sidebar_position: 1 description: Create field 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'; # Create field Creates a new field in the table `Function CreateField(Val Token, Val Base, Val Table, Val FieldStructure) Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Token | --token | String | ✔ | Token | | Base | --base | String | ✔ | Base identifier | | Table | --table | String | ✔ | Table identifier | | FieldStructure | --fielddata | Structure Of KeyAndValue | ✔ | Description of the new field | Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="1C:Enterprise/OneScript code example" Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d..."; Base = "app6PhOegDlpQP8TF"; Table = "tbloMvfK4KRBJQMAc"; Name = String(New UUID); Field = OPI_Airtable.GetNumberField(Name); Result = OPI_Airtable.CreateField(Token, Base, Table, Field); ``` ```bash # JSON data can also be passed as a path to a .json file oint airtable CreateField \ --token "***" \ --base "apppuWpft4xNlV34k" \ --table "tblbmPGHdRw8sWAio" \ --fielddata "{'name':'2d930e9e-886d-4144-86b4-63179fe702e6','type':'number','options':{'precision':'0'}}" ``` ```batch :: JSON data can also be passed as a path to a .json file oint airtable CreateField ^ --token "***" ^ --base "apppuWpft4xNlV34k" ^ --table "tblbmPGHdRw8sWAio" ^ --fielddata "{'name':'2d930e9e-886d-4144-86b4-63179fe702e6','type':'number','options':{'precision':'0'}}" ``` ```json title="Result" { "type": "number", "options": { "precision": 0 }, "id": "fldwMqIgT4WoJbIQc", "name": "2d930e9e-886d-4144-86b4-63179fe702e6" } ```