1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-11 11:41:56 +02:00
Vitaly the Alpaca (bot) 164a2d2c04 Main build (Jenkins)
2024-10-15 21:15:56 +03:00

40 lines
584 B
Plaintext

---
sidebar_position: 9
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get field (phone)
Gets the description of a phone number field
`Function GetPhoneField(Val Name) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Name | --title | String | ✔ | Field name |
Returns: Structure - Field description
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Result = OPI_Airtable.GetPhoneField("Phone");
```
```json title="Result"
{
"name": "Phone",
"type": "phoneNumber"
}
```