1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/md/Airtable/Working-with-fields/Create-field.mdx
Vitaly the Alpaca (bot) 00b71369a3 Main build (Jenkins)
2025-08-18 16:58:37 +03:00

83 lines
2.4 KiB
Plaintext
Vendored

---
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
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "app5NvHkX9zG8DaAc";
Table = "tblBdeKTR1pkzf5mQ";
Name = String(New UUID);
Field = OPI_Airtable.GetNumberField(Name);
Result = OPI_Airtable.CreateField(Token, Base, Table, Field);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint airtable CreateField \
--token "***" \
--base "appoZGUxvqRPTdrJq" \
--table "tblW2WAxexmf0an6X" \
--title "2ab39752-b327-47a8-9f69-44d027120410" \
--fielddata "{'name':'2ab39752-b327-47a8-9f69-44d027120410','type':'number','options':{'precision':0}}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint airtable CreateField ^
--token "***" ^
--base "appoZGUxvqRPTdrJq" ^
--table "tblW2WAxexmf0an6X" ^
--title "2ab39752-b327-47a8-9f69-44d027120410" ^
--fielddata "{'name':'2ab39752-b327-47a8-9f69-44d027120410','type':'number','options':{'precision':0}}"
```
</TabItem>
</Tabs>
```json title="Result"
{
"type": "number",
"options": {
"precision": 0
},
"id": "fldDqI1OXajeQw5Gg",
"name": "b3fd1280-83b2-4145-838d-3437b14adee3"
}
```