1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/Airtable/Working-with-fields/Get-number-field.md

51 lines
850 B
Markdown
Raw Normal View History

---
sidebar_position: 4
---
# Get field (numeric)
Gets the description of a numeric field
2024-07-10 12:58:29 +02:00
`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
2024-07-10 13:05:58 +02:00
<br/>
2024-07-10 12:58:29 +02:00
```bsl title="Code example"
2024-07-10 13:24:11 +02:00
Name = "Number";
Precision = "0";
Response = OPI_Airtable.GetNumberField(Name, Precision); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
```
```sh title="CLI command example"
oint airtable GetNumberField --title "Number" --precision "0"
```
```json title="Result"
2024-07-10 13:11:17 +02:00
{
"name": "Number",
"type": "number",
"options": {
"precision": 0
}
}
```