1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-13 11:50:53 +02:00
Vitaly the Alpaca (bot) dd996a47a5 Main build (Jenkins)
2024-10-03 09:45:14 +03:00

745 B

sidebar_position
sidebar_position
4

Get field (numeric)

Gets the description of a numeric field

Function GetNumberField(Val Name, Val Precision = 0) Export

Parameter CLI option Type Description
Name --title String New field name
Precision --precision Number, String Number of decimal places

Returns: Structure - Field description


    Result = OPI_Airtable.GetNumberField("Number");
    
  oint airtable GetNumberField --title "Number" --precision "0"

{
 "name": "Number",
 "type": "number",
 "options": {
  "precision": 0
 }
}