1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-01 22:29:52 +02:00
Files
OpenIntegrations/docs/en/md/Airtable/Working-with-fields/Create-field.mdx

79 lines
2.2 KiB
Plaintext
Raw Normal View History

2024-10-15 10:50:56 +03:00
---
2024-10-15 10:16:04 +03:00
sidebar_position: 1
2025-05-05 11:15:20 +03:00
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
2025-05-05 09:49:19 +03:00
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Airtable]
2024-10-15 10:16:04 +03:00
---
2024-10-15 10:50:56 +03:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2024-10-15 10:16:04 +03:00
# Create field
Creates a new field in the table
`Function CreateField(Val Token, Val Base, Val Table, Val FieldStructure) Export`
2024-10-15 15:15:47 +03:00
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Token |
| Base | --base | String | ✔ | Base identifier |
| Table | --table | String | ✔ | Table identifier |
2024-12-29 17:57:09 +03:00
| FieldStructure | --fielddata | Structure Of KeyAndValue | ✔ | Description of the new field |
2024-10-15 10:16:04 +03:00
Returns: Map Of KeyAndValue - serialized JSON response from Airtable
<br/>
2024-10-15 21:15:56 +03:00
```bsl title="1C:Enterprise/OneScript code example"
2025-06-29 14:35:33 +03:00
Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "app4XRXnjhsxGaERx";
Table = "tblDt5eujvrMRX7pq";
2024-10-15 10:16:04 +03:00
Name = String(New UUID);
Field = OPI_Airtable.GetNumberField(Name);
Result = OPI_Airtable.CreateField(Token, Base, Table, Field);
```
2024-10-20 22:36:03 +03:00
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint airtable CreateField \
2024-10-22 08:59:24 +03:00
--token "***" \
2025-07-05 10:54:51 +03:00
--base "appRcy8EFLtr6b7yZ" \
--table "tbloefx2yd28cWJIS" \
--title "0eb399b6-0ec7-45f1-acf0-44be25a42d69" \
--fielddata "C:\Users\bayse\AppData\Local\Temp\m2ortvrnixj.tmp"
2024-10-20 22:36:03 +03:00
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint airtable CreateField ^
2024-10-22 08:59:24 +03:00
--token "***" ^
2025-07-05 10:54:51 +03:00
--base "appRcy8EFLtr6b7yZ" ^
--table "tbloefx2yd28cWJIS" ^
--title "0eb399b6-0ec7-45f1-acf0-44be25a42d69" ^
--fielddata "C:\Users\bayse\AppData\Local\Temp\m2ortvrnixj.tmp"
2024-10-20 22:36:03 +03:00
```
</TabItem>
</Tabs>
2024-10-15 10:16:04 +03:00
```json title="Result"
{
"type": "number",
"options": {
"precision": 0
},
"id": "fldDqI1OXajeQw5Gg",
"name": "b3fd1280-83b2-4145-838d-3437b14adee3"
}
```