1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-23 00:38:51 +02:00
Files
.github
Media
docs
docusaurus
en
cli
data
examples
md
Airtable
Comment-management
Record-management
Table-management
Working-with-databases
Working-with-fields
Create-field.md
Get-attachment-field.md
Get-checkbox-field.md
Get-date-field.md
Get-email-field.md
Get-link-field.md
Get-number-field.md
Get-phone-field.md
Get-string-field.md
Modify-field.md
_category_.json
Bitrix24
Dropbox
Google_Calendar
Google_Drive
Google_Sheets
Instructions
Notion
Slack
Start
Telegram
Twitter
VK
VKTeams
Viber
Yandex_Disk
sidebars.js
results
ru
service
src
.gitignore
LICENSE
NOTICE
README.md
README_ENG.md
data.json.gpg
OpenIntegrations/docs/en/md/Airtable/Working-with-fields/Get-attachment-field.md

46 lines
718 B
Markdown
Raw Normal View History

---
sidebar_position: 5
---
# Get field (file)
Gets the description of a file field
2024-07-10 13:58:29 +03:00
`Function GetAttachmentField(Val Name) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Name | --title | String | Field name |
Returns: Structure - Field description
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```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"
2024-08-14 09:06:31 +03:00
{
"name": "Attachment",
"type": "multipleAttachments"
}
```