Skip to main content

Get field (email)

Gets the description of an email field

Function GetEmailField(Val Name) Export

ParameterCLI optionTypeDescription
Name--titleStringField name

Returns: Structure - Field description


Code example
  
Name = "Email";

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

Result
{
"name": "Email",
"type": "email"
}