Skip to main content

Get field (phone)

Gets the description of a phone number field

Function GetPhoneField(Val Name) Export

ParameterCLI optionTypeDescription
Name--titleStringField name

Returns: Structure - Field description


Code example
  
Name = "Phone";

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

Result
{
"name": "Phone",
"type": "phoneNumber"
}