1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/Airtable/Working-with-fields/Create-field.mdx
Vitaly the Alpaca (bot) abbcdf3723 Main build (Jenkins)
2025-09-18 13:55:48 +03:00

76 lines
2.2 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 = "appaKLx2yhnY45n6b";
Table = "tblwLZErQh3D39If3";
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
oint airtable CreateField \
--token "***" \
--base "appUHJhiJ9eMFouSg" \
--table "tbl0Cgy9AVXbpuuqH" \
--fielddata "{'name':'b7bac892-9d6a-4a28-afc9-1bfaccbca053','type':'number','options':{'precision':'0'}}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint airtable CreateField ^
--token "***" ^
--base "appUHJhiJ9eMFouSg" ^
--table "tbl0Cgy9AVXbpuuqH" ^
--fielddata "{'name':'b7bac892-9d6a-4a28-afc9-1bfaccbca053','type':'number','options':{'precision':'0'}}"
```
</TabItem>
</Tabs>
```json title="Result"
{
"type": "number",
"options": {
"precision": 0
},
"id": "fldpyEz4pev32XZPi",
"name": "b7bac892-9d6a-4a28-afc9-1bfaccbca053"
}
```