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
1C:Enterprise/OneScript code example
Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "apprVUrxTXFYEvPAR";
Table = "tblrIEEmAsZ5pkthF";
Name = String(New UUID);
Field = OPI_Airtable.GetNumberField(Name);
Result = OPI_Airtable.CreateField(Token, Base, Table, Field);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint airtable CreateField \
--token "***" \
--base "app96pFYup5L3umQr" \
--table "tblSsXB0BMtapwLtm" \
--title "0c6c46b8-3d7c-4e92-b66c-8e63e4acce29" \
--fielddata "{'name':'0c6c46b8-3d7c-4e92-b66c-8e63e4acce29','type':'number','options':{'precision':0}}"
:: JSON data can also be passed as a path to a .json file
oint airtable CreateField ^
--token "***" ^
--base "app96pFYup5L3umQr" ^
--table "tblSsXB0BMtapwLtm" ^
--title "0c6c46b8-3d7c-4e92-b66c-8e63e4acce29" ^
--fielddata "{'name':'0c6c46b8-3d7c-4e92-b66c-8e63e4acce29','type':'number','options':{'precision':0}}"
Result
{
"type": "number",
"options": {
"precision": 0
},
"id": "fldDqI1OXajeQw5Gg",
"name": "b3fd1280-83b2-4145-838d-3437b14adee3"
}