1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-13 00:07:51 +02:00

52 lines
1.4 KiB
Markdown
Raw Normal View History

---
sidebar_position: 8
---
# Update file
Updates file binary data
2024-07-10 13:58:29 +03:00
`Function UpdateFile(Val Token, Val Identifier, Val File, Val NewName = "") Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Token | --token | String | Token |
| Identifier | --object | String | Identifier of the object to update |
| File | --file | BinaryData,String | File source for update |
| NewName | --title | String | New file name (if necessary) |
Returns: Map Of KeyAndValue - serialized JSON response from Google
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
2024-09-29 00:25:48 +03:00
Token = "ya29.a0AcM612wLdbBK14FR2SE0d3WHabYb8Xtppm0oKCcbVrecgsA-a5DfsgZ29stOw4hu84F_IpHbKTJocsm1WpjLQPBT5MJ6p8D7H1PKa_iT0...";
2024-09-28 19:38:00 +03:00
NewName = "UpdatedFile.jpg";
2024-09-29 00:25:48 +03:00
Identifier = "1RijXw14hyQN_59ZOzJ9f35ezzU_qd114";
2024-09-29 12:34:39 +03:00
File = "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture2.jpg"; // URL, Binary Data or Path to file
2024-09-28 19:38:00 +03:00
Result = OPI_GoogleDrive.UpdateFile(Token, Identifier, File, NewName);
```
```sh title="CLI command example"
oint gdrive UpdateFile --token %token% --object "1V0oaZh3qQZ7-wbARC8-vrErAFllsBGSJ" --file %file% --title %title%
```
```json title="Result"
2024-08-14 09:06:31 +03:00
{
"mimeType": "image/jpeg",
"name": "UpdatedFile.jpg",
"id": "1V0oaZh3qQZ7-wbARC8-vrErAFllsBGSJ",
"kind": "drive#file"
}
```