---
sidebar_position: 10
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get field (url)
Gets the description of a URL field
`Function GetLinkField(Val Name) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Name | --title | String | ✔ | Field name |
Returns: Structure - Field description
```bsl title="1C:Enterprise/OneScript code example"
Result = OPI_Airtable.GetLinkField("Link");
```
```bash
oint airtable GetLinkField \
--title "Link"
```
```batch
oint airtable GetLinkField ^
--title "Link"
```
```json title="Result"
{
"name": "Link",
"type": "url"
}
```