Modify field
Changes the name and/or description of an existing table field
Function ModifyField(Val Token, Val Base, Val Table, Val Field, Val Name = "", Val Description = "") Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Token | --token | String | ✔ | Token |
| Base | --base | String | ✔ | Base identifier Base |
| Table | --table | String | ✔ | Table identifier |
| Field | --field | String | ✔ | Field identifier |
| Name | --title | String | ✖ | New name |
| Description | --description | String | ✖ | New description |
Returns: Map Of KeyAndValue - serialized JSON response from Airtable
1C:Enterprise/OneScript code example
Token = "patNn4BXW66Yx3pdj.5b93c53cab554a8387de02d...";
Base = "apppSUqWfuxL53HHT";
Table = "tbl4oOxSHEcqPx92T";
Field = "fldopxtH4lgYEiMn1";
Name = String(New UUID) + "(change.)";
Description = "New description";
Result = OPI_Airtable.ModifyField(Token, Base, Table, Field, Name, Description);
- Bash
- CMD/Bat
oint airtable ModifyField \
--token "***" \
--base "appSvHTETQWodBcs7" \
--table "tblyaw6xgylz1eTkq" \
--field "fldbs7QjTK90osa8E" \
--title "c6e6bfa1-d081-4226-946a-d89bb2a93b5b(change.)" \
--description "New description"
oint airtable ModifyField ^
--token "***" ^
--base "appSvHTETQWodBcs7" ^
--table "tblyaw6xgylz1eTkq" ^
--field "fldbs7QjTK90osa8E" ^
--title "c6e6bfa1-d081-4226-946a-d89bb2a93b5b(change.)" ^
--description "New description"
Result
{
"type": "number",
"options": {
"precision": 0
},
"id": "fldm9baY6FkgCPaCi",
"name": "111ce3fc-5cea-427a-bb46-d7aa458bf98c(change.)",
"description": "New description"
}