1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-04 22:14:37 +02:00
2024-10-22 08:59:24 +03:00

56 lines
972 B
Plaintext
Vendored

---
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 | Required | Description |
|-|-|-|-|-|
| Name | --title | String | ✔ | Field name |
Returns: Structure - Field description
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Result = OPI_Airtable.GetAttachmentField("Attachment");
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint airtable GetAttachmentField \
--title "Attachment"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint airtable GetAttachmentField ^
--title "Attachment"
```
</TabItem>
</Tabs>
```json title="Result"
{
"name": "Attachment",
"type": "multipleAttachments"
}
```