1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-23 21:29:38 +02:00
Vitaly the Alpaca (bot) 5e0a08b5cd Main build (Jenkins)
2024-12-10 09:08:34 +03:00

98 lines
2.2 KiB
Plaintext

---
sidebar_position: 6
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Make file private
Removes the public URL from the file. Requires user token
`Function MakeFilePrivate(Val Token, Val FileID) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | User token |
| FileID | --fileid | String | ✔ | File identifier |
Returns: Map Of KeyAndValue - serialized JSON response from Slack
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "xoxb-6965308400114-696804637...";
FileID = "F0848Q0M326";
Result = OPI_Slack.MakeFilePrivate(Token, FileID);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint slack MakeFilePrivate \
--token "***" \
--fileid "F084BP7K15G"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint slack MakeFilePrivate ^
--token "***" ^
--fileid "F084BP7K15G"
```
</TabItem>
</Tabs>
```json title="Result"
{
"ok": true,
"files": [
{
"id": "F07QV0PCS1L",
"created": 1728454525,
"timestamp": 1728454525,
"name": "megadoc.docx",
"title": "NewFile",
"mimetype": "",
"filetype": "",
"pretty_type": "",
"user": "U06UG1CAYH2",
"user_team": "T06UD92BS3C",
"editable": false,
"size": 24069,
"mode": "hosted",
"is_external": false,
"external_type": "",
"is_public": false,
"public_url_shared": false,
"display_as_bot": false,
"username": "",
"url_private": "https://files.slack.com/files-pri/T06UD92BS3C-F07QV0PCS1L/megadoc.docx",
"url_private_download": "https://files.slack.com/files-pri/T06UD92BS3C-F07QV0PCS1L/download/megadoc.docx",
"media_display_type": "unknown",
"permalink": "https://openintegrationsgroup.slack.com/files/U06UG1CAYH2/F07QV0PCS1L/megadoc.docx",
"permalink_public": "https://slack-files.com/T06UD92BS3C-F07QV0PCS1L-dec85076a5",
"comments_count": 0,
"is_starred": false,
"shares": {},
"channels": [],
"groups": [],
"ims": [],
"has_more_shares": false,
"has_rich_preview": false,
"file_access": "visible"
}
]
}
```