---
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
```bsl title="1C:Enterprise/OneScript code example"
Result = OPI_Airtable.GetAttachmentField("Attachment");
```
```bash
oint airtable GetAttachmentField \
--title "Attachment"
```
```batch
oint airtable GetAttachmentField ^
--title "Attachment"
```
```json title="Result"
{
"name": "Attachment",
"type": "multipleAttachments"
}
```