Skip to main content

Get field (file)

Gets the description of a file field

Function GetAttachmentField(Val Name) Export

ParameterCLI optionTypeDescription
Name--titleStringField name

Returns: Structure - Field description


Code example
  
Name = "Attachment";

Response = OPI_Airtable.GetAttachmentField(Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
CLI command example
    
oint airtable GetAttachmentField --title "Attachment"

Result
{
"name": "Attachment",
"type": "multipleAttachments"
}