1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-29 21:57:16 +02:00
Vitaly the Alpaca (bot) 125cae2a10 Main build (Jenkins)
2024-12-19 11:45:21 +03:00

81 lines
2.2 KiB
Plaintext

---
sidebar_position: 1
---
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 = "appfEcZzwvh5P4Cts";
Table = "tbllCgEBnUt5pcqrM";
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 "appJNU95r80IURgIq" \
--table "tbltMaBjbww8Bhar0" \
--title "9f21f784-5b10-415a-bcbf-84a693e67826" \
--fielddata "{'name':'9f21f784-5b10-415a-bcbf-84a693e67826','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 "appJNU95r80IURgIq" ^
--table "tbltMaBjbww8Bhar0" ^
--title "9f21f784-5b10-415a-bcbf-84a693e67826" ^
--fielddata "{'name':'9f21f784-5b10-415a-bcbf-84a693e67826','type':'number','options':{'precision':0}}"
```
</TabItem>
</Tabs>
```json title="Result"
{
"type": "number",
"options": {
"precision": 0
},
"id": "fldDqI1OXajeQw5Gg",
"name": "b3fd1280-83b2-4145-838d-3437b14adee3"
}
```