Get field (numeric)
Gets the description of a numeric field
Function GetNumberField(Val Name, Val Precision = 0) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Name | --title | String | ✔ | New field name |
Precision | --precision | Number, String | ✖ | Number of decimal places |
Returns: Structure - Field description
1C:Enterprise/OneScript code example
Result = OPI_Airtable.GetNumberField("Number");
- Bash
- CMD/Bat
oint airtable GetNumberField \
--title "b8910f0b-bd5d-4f96-8219-c1cdbf4e7516"
oint airtable GetNumberField ^
--title "b8910f0b-bd5d-4f96-8219-c1cdbf4e7516"
Result
{
"name": "Number",
"type": "number",
"options": {
"precision": 0
}
}