Skip to main content

Get field (url)

Gets the description of a URL field

Function GetLinkField(Val Name) Export

ParameterCLI optionTypeDescription
Name--titleStringField name

Returns: Structure - Field description


Code example
  
Name = "Link";

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

Result
{
"name": "Link",
"type": "url"
}