1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-26 05:37:27 +02:00
2024-08-14 09:06:31 +03:00

46 lines
718 B
Markdown

---
sidebar_position: 5
---
# 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"
Name = "Attachment";
Response = OPI_Airtable.GetAttachmentField(Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
```
```sh title="CLI command example"
oint airtable GetAttachmentField --title "Attachment"
```
```json title="Result"
{
"name": "Attachment",
"type": "multipleAttachments"
}
```