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

40 lines
555 B
Plaintext

---
sidebar_position: 5
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get field (file)
Gets the description of a file field
`Function GetAttachmentField(Val Name) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Name | --title | String | Field name |
Returns: Structure - Field description
<br/>
```bsl title="Code example"
Result = OPI_Airtable.GetAttachmentField("Attachment");
```
```json title="Result"
{
"name": "Attachment",
"type": "multipleAttachments"
}
```