Skip to main content

Create field

Creates a new field in the table

Function CreateField(Val Token, Val Base, Val Table, Val FieldStructure) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringToken
Base--baseStringBase identifier
Table--tableStringTable identifier
FieldStructure--fielddataStructure of KeyAndValueDescription of the new field

Returns: Map Of KeyAndValue - serialized JSON response from Airtable


1C:Enterprise/OneScript code example
    Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "appeMvjrOQPJciL7O";
Table = "tblQdiEo3yKV0e1cj";
Name = String(New UUID);

Field = OPI_Airtable.GetNumberField(Name);
Result = OPI_Airtable.CreateField(Token, Base, Table, Field);
    # JSON data can also be passed as a path to a .json file

oint airtable CreateField \
--token "***" \
--base "appk3Fw5gwni4SWYj" \
--table "tblIT2QrATF0xn2YE" \
--title "7a09c61f-6057-4d70-8b81-0ca8fb393e44" \
--fielddata "{'name':'7a09c61f-6057-4d70-8b81-0ca8fb393e44','type':'number','options':{'precision':0}}"
Result
{
"type": "number",
"options": {
"precision": 0
},
"id": "fldDqI1OXajeQw5Gg",
"name": "b3fd1280-83b2-4145-838d-3437b14adee3"
}