2024-06-05 10:19:46 +00:00
|
|
|
---
|
|
|
|
sidebar_position: 8
|
|
|
|
---
|
|
|
|
|
|
|
|
# Update file
|
|
|
|
Updates file binary data
|
|
|
|
|
|
|
|
|
2024-07-10 11:59:55 +03:00
|
|
|
|
2024-07-10 13:58:29 +03:00
|
|
|
`Function UpdateFile(Val Token, Val Identifier, Val File, Val NewName = "") Export`
|
2024-06-05 10:19:46 +00:00
|
|
|
|
2024-08-13 15:52:26 +03:00
|
|
|
| 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) |
|
2024-06-05 10:19:46 +00:00
|
|
|
|
2024-08-13 15:52:26 +03:00
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Google
|
2024-06-05 10:19:46 +00:00
|
|
|
|
2024-07-10 14:05:58 +03:00
|
|
|
<br/>
|
2024-07-10 11:59:55 +03:00
|
|
|
|
2024-07-10 13:58:29 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-05 10:19:46 +00:00
|
|
|
```bsl title="Code example"
|
2024-09-28 19:38:00 +03:00
|
|
|
Token = "ya29.a0AcM612z6H4poMFq_1-p1k1-QF7c-gwUkVSsqTdSkNphsLEOb5P6mIEka1HO6Qtpa8blAWg966f9g85FujqfIsORbwU-wVy_3xEHh5ycBg...";
|
|
|
|
NewName = "UpdatedFile.jpg";
|
|
|
|
Identifier = "1A0oqifjQs0coHvFLF4BFr7hCmOJxETDe";
|
|
|
|
File = "https://openintegrations.dev/test_data/picture2.jpg"; // URL, Binary Data or Path to file
|
|
|
|
|
|
|
|
Result = OPI_GoogleDrive.UpdateFile(Token, Identifier, File, NewName);
|
2024-06-05 10:19:46 +00:00
|
|
|
```
|
2024-08-13 15:52:26 +03:00
|
|
|
|
2024-07-10 11:59:55 +03:00
|
|
|
|
2024-06-05 10:19:46 +00:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
2024-08-13 15:52:26 +03:00
|
|
|
|
|
|
|
oint gdrive UpdateFile --token %token% --object "1V0oaZh3qQZ7-wbARC8-vrErAFllsBGSJ" --file %file% --title %title%
|
2024-06-05 10:19:46 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-08-14 09:06:31 +03:00
|
|
|
{
|
2024-08-13 15:52:26 +03:00
|
|
|
"mimeType": "image/jpeg",
|
|
|
|
"name": "UpdatedFile.jpg",
|
|
|
|
"id": "1V0oaZh3qQZ7-wbARC8-vrErAFllsBGSJ",
|
|
|
|
"kind": "drive#file"
|
|
|
|
}
|
2024-06-05 10:19:46 +00:00
|
|
|
```
|