1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-15 11:56:36 +02:00

40 lines
536 B
Plaintext
Raw Normal View History

2024-10-15 10:50:56 +03:00
---
2024-10-15 10:16:04 +03:00
sidebar_position: 3
---
2024-10-15 10:50:56 +03:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2024-10-15 10:16:04 +03:00
# Get field (string)
Gets the description of a string field
`Function GetStringField(Val Name) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Name | --title | String | New field name |
Returns: Structure - Field description
<br/>
```bsl title="Code example"
Result = OPI_Airtable.GetStringField("String");
```
```json title="Result"
{
"name": "String",
"type": "richText"
}
```