You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-06 08:49:29 +02:00
Правки доков
This commit is contained in:
@@ -6,12 +6,10 @@ sidebar_position: 1
|
||||
Creates a new block based on an existing block
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function CreateBlock(Val Token, Val Parent, Val Block, Val InsertAfter = "") Export*
|
||||
`Function CreateBlock(Val Token, Val Parent, Val Block, Val InsertAfter = "") Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -24,6 +22,9 @@ sidebar_position: 1
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 4
|
||||
Deletes block by ID
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function DeleteBlock(Val Token, Val BlockID) Export*
|
||||
`Function DeleteBlock(Val Token, Val BlockID) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -22,6 +20,9 @@ sidebar_position: 4
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 2
|
||||
Returns the block structure by ID
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function ReturnBlock(Val Token, Val BlockID, Val OnlyBase = True) Export*
|
||||
`Function ReturnBlock(Val Token, Val BlockID, Val OnlyBase = True) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -23,6 +21,9 @@ sidebar_position: 2
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 3
|
||||
Returns list of child blocks of parent block
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function ReturnChildBlocks(Val Token, Val BlockID) Export*
|
||||
`Function ReturnChildBlocks(Val Token, Val BlockID) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -22,6 +20,9 @@ sidebar_position: 3
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 1
|
||||
Creates a database
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function CreateDatabase(Val Token, Val Parent, Val Title, Val Properties = "") Export*
|
||||
`Function CreateDatabase(Val Token, Val Parent, Val Title, Val Properties = "") Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -24,6 +22,9 @@ sidebar_position: 1
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 3
|
||||
Edits properties of an existing database
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function EditDatabaseProperties(Val Token, Val Base, Val Properties = "", Val Title = "", Val Description = "") Export*
|
||||
`Function EditDatabaseProperties(Val Token, Val Base, Val Properties = "", Val Title = "", Val Description = "") Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -25,6 +23,9 @@ sidebar_position: 3
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 2
|
||||
Get database information
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function GetDatabase(Val Token, Val Base) Export*
|
||||
`Function GetDatabase(Val Token, Val Base) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -22,6 +20,9 @@ sidebar_position: 2
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 2
|
||||
Creates a page in the parent database
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function CreatePageInDatabase(Val Token, Val Parent, Val Data) Export*
|
||||
`Function CreatePageInDatabase(Val Token, Val Parent, Val Data) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -23,6 +21,9 @@ sidebar_position: 2
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 1
|
||||
Creates a child page above another parent page
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function CreatePage(Val Token, Val Parent, Val Title) Export*
|
||||
`Function CreatePage(Val Token, Val Parent, Val Title) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -23,6 +21,9 @@ sidebar_position: 1
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 4
|
||||
Changes the properties of an existing page
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function EditPageProperties(Val Token, Val Page, Val Data = "", Val Icon = "", Val Cover = "", Val Archived = False) Export*
|
||||
`Function EditPageProperties(Val Token, Val Page, Val Data = "", Val Icon = "", Val Cover = "", Val Archived = False) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -26,6 +24,9 @@ sidebar_position: 4
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 3
|
||||
Gets information about the page by ID
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function GetPage(Val Token, Val Page) Export*
|
||||
`Function GetPage(Val Token, Val Page) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -22,6 +20,9 @@ sidebar_position: 3
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 2
|
||||
Gets user data by ID
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function GetUserData(Val Token, Val UserID) Export*
|
||||
`Function GetUserData(Val Token, Val UserID) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -22,6 +20,9 @@ sidebar_position: 2
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
@@ -6,12 +6,10 @@ sidebar_position: 1
|
||||
Returns a list of workspace users
|
||||
|
||||
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
*Function UserList(Val Token) Export*
|
||||
`Function UserList(Val Token) Export`
|
||||
|
||||
| Parameter | CLI option | Type | Destination |
|
||||
|-|-|-|-|
|
||||
@@ -21,6 +19,9 @@ sidebar_position: 1
|
||||
Returns: Map Of KeyAndValue - Serialized JSON response from Notion
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
|
||||
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
|
||||
|
||||
Reference in New Issue
Block a user