1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-01 22:29:52 +02:00
Files
OpenIntegrations/docs/en/md/Airtable/Working-with-fields/Get-attachment-field.mdx

40 lines
579 B
Plaintext
Raw Normal View History

2024-10-15 10:50:56 +03:00
---
2024-10-15 10:16:04 +03:00
sidebar_position: 5
---
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 (file)
Gets the description of a file field
`Function GetAttachmentField(Val Name) Export`
2024-10-15 15:15:47 +03:00
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Name | --title | String | ✔ | Field name |
2024-10-15 10:16:04 +03:00
Returns: Structure - Field description
<br/>
```bsl title="Code example"
Result = OPI_Airtable.GetAttachmentField("Attachment");
```
```json title="Result"
{
"name": "Attachment",
"type": "multipleAttachments"
}
```