You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-23 22:05:15 +02:00
Правки доков
This commit is contained in:
@@ -6,12 +6,10 @@ sidebar_position: 1
|
||||
Creates a new field in the table
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function CreateField(Val Token, Val Base, Val Table, Val FieldStructure) Export*
|
||||
`Function CreateField(Val Token, Val Base, Val Table, Val FieldStructure) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -24,6 +22,9 @@ sidebar_position: 1
|
||||
Returns: Map Of KeyAndValue - serialized JSON response from Airtable
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Base = "apptm8Xqo7TwMaipQ";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 5
|
||||
Gets the description of a file field
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function GetAttachmentField(Val Name) Export*
|
||||
`Function GetAttachmentField(Val Name) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -21,6 +19,9 @@ sidebar_position: 5
|
||||
Returns: Structure - Field description
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Name = "Attachment";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 6
|
||||
Gets the description of a boolean field
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function GetCheckboxField(Val Name) Export*
|
||||
`Function GetCheckboxField(Val Name) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -21,6 +19,9 @@ sidebar_position: 6
|
||||
Returns: Structure - Field description
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Name = "Checkbox";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 7
|
||||
Gets the description of a date field
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function GetDateField(Val Name) Export*
|
||||
`Function GetDateField(Val Name) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -21,6 +19,9 @@ sidebar_position: 7
|
||||
Returns: Structure - Field description
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Name = "Date";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 8
|
||||
Gets the description of an email field
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function GetEmailField(Val Name) Export*
|
||||
`Function GetEmailField(Val Name) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -21,6 +19,9 @@ sidebar_position: 8
|
||||
Returns: Structure - Field description
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Name = "Email";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 10
|
||||
Gets the description of a URL field
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function GetLinkField(Val Name) Export*
|
||||
`Function GetLinkField(Val Name) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -21,6 +19,9 @@ sidebar_position: 10
|
||||
Returns: Structure - Field description
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Name = "Link";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 4
|
||||
Gets the description of a numeric field
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function GetNumberField(Val Name, Val Precision = 0) Export*
|
||||
`Function GetNumberField(Val Name, Val Precision = 0) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -22,6 +20,9 @@ sidebar_position: 4
|
||||
Returns: Structure - Field description
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Name = "Number";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 9
|
||||
Gets the description of a phone number field
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function GetPhoneField(Val Name) Export*
|
||||
`Function GetPhoneField(Val Name) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -21,6 +19,9 @@ sidebar_position: 9
|
||||
Returns: Structure - Field description
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Name = "Phone";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 3
|
||||
Gets the description of a string field
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function GetStringField(Val Name) Export*
|
||||
`Function GetStringField(Val Name) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -21,6 +19,9 @@ sidebar_position: 3
|
||||
Returns: Structure - Field description
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Name = "String";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 2
|
||||
Changes the name and/or description of an existing table field
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function ModifyField(Val Token, Val Base, Val Table, Val Field, Val Name = "", Val Description = "") Export*
|
||||
`Function ModifyField(Val Token, Val Base, Val Table, Val Field, Val Name = "", Val Description = "") Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -26,6 +24,9 @@ sidebar_position: 2
|
||||
Returns: Map Of KeyAndValue - serialized JSON response from Airtable
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Base = "apptm8Xqo7TwMaipQ";
|
||||
|
||||
Reference in New Issue
Block a user