1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Airtable/Field-work/Get-number-field.md
2024-06-05 10:19:46 +00:00

847 B

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 Destination
Name --title String New field name
Precision --precision Number, String Number of decimal places

Returns: Structure - Field description

	
 
 Name = "Number";
 Precision = "0";
 
 Response = OPI_Airtable.GetNumberField(Name, Precision); //Map
 Response = OPI_Tools.JSONString(Response); //JSON string
 

	
 
 oint airtable GetNumberField --title "Number" --precision "0"



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