Skip to main content

Get object information

Gets information about a folder or file by ID

Function GetObjectInformation(Val Token, Val Identifier) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringToken
Identifier--objectStringIdentifier of the file or folder

Returns: Map Of KeyAndValue - serialized JSON response from Google


1C:Enterprise/OneScript code example
    Token      = "ya29.a0AQQ_BDTgQbn9c5rXhPK3FCakms_7oKkdIWE1CCQFnSPftb2RxvloVqnYOcnsAKhXrD0Gq8Tz2Kgn5IBXG5E25uksZfvvTtXob-jFcuj_9LZYs9La4HrcFk766...";
Identifier = "191iyaa6-2BCNRPOF0F8mQ0TuNWPNesdM";

Result = OPI_GoogleDrive.GetObjectInformation(Token, Identifier);
    oint gdrive GetObjectInformation \
--token "***" \
--object "11Mo30odYPEtBBU_0OndFx5dz1kP7tu-Y"
Result
{
"kind": "drive#file",
"id": "11Mo30odYPEtBBU_0OndFx5dz1kP7tu-Y",
"name": "Test folder",
"mimeType": "application/vnd.google-apps.folder",
"starred": false,
"trashed": false,
"explicitlyTrashed": false,
"parents": [
"0AN2vrbrhqfJrUk9PVA"
],
"spaces": [
"drive"
],
"version": "1",
"webViewLink": "https://drive.google.com/drive/folders/11Mo30odYPEtBBU_0OndFx5dz1kP7tu-Y",
"iconLink": "https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.folder",
"hasThumbnail": false,
"thumbnailVersion": "0",
"viewedByMe": true,
"viewedByMeTime": "2025-01-09T19:05:16.432Z",
"createdTime": "2025-01-09T19:05:16.432Z",
"modifiedTime": "2025-01-09T19:05:20.704Z",
"modifiedByMeTime": "2025-01-09T19:05:20.704Z",
"modifiedByMe": true,
"owners": [
{
"kind": "drive#user",
"displayName": "Антон Титовец",
"photoLink": "https://lh3.googleusercontent.com/a/ACg8ocKYttNv2CZ-cTTuE90Zmht_PwnGc0YnjM1IUllXsTVORfZFVPU=s64",
"me": true,
"permissionId": "07468399490707249352",
"emailAddress": "bayselonarrend@gmail.com"
}
],
"lastModifyingUser": {
"kind": "drive#user",
"displayName": "Антон Титовец",
"photoLink": "https://lh3.googleusercontent.com/a/ACg8ocKYttNv2CZ-cTTuE90Zmht_PwnGc0YnjM1IUllXsTVORfZFVPU=s64",
"me": true,
"permissionId": "07468399490707249352",
"emailAddress": "bayselonarrend@gmail.com"
},
"shared": false,
"ownedByMe": true,
"downloadRestrictions": {
"itemDownloadRestriction": {
"restrictedForReaders": false,
"restrictedForWriters": false
},
"effectiveDownloadRestrictionWithContext": {
"restrictedForReaders": false,
"restrictedForWriters": false
}
},
"capabilities": {
"canAcceptOwnership": false,
"canAddChildren": true,
"canAddMyDriveParent": false,
"canChangeCopyRequiresWriterPermission": false,
"canChangeItemDownloadRestriction": false,
"canChangeSecurityUpdateEnabled": false,
"canChangeViewersCanCopyContent": false,
"canComment": true,
"canCopy": false,
"canDelete": true,
"canDisableInheritedPermissions": true,
"canDownload": true,
"canEdit": true,
"canEnableInheritedPermissions": true,
"canListChildren": true,
"canModifyContent": true,
"canModifyContentRestriction": false,
"canModifyEditorContentRestriction": false,
"canModifyOwnerContentRestriction": false,
"canModifyLabels": false,
"canMoveChildrenWithinDrive": true,
"canMoveItemIntoTeamDrive": true,
"canMoveItemOutOfDrive": true,
"canMoveItemWithinDrive": true,
"canReadLabels": false,
"canReadRevisions": false,
"canRemoveChildren": true,
"canRemoveContentRestriction": false,
"canRemoveMyDriveParent": true,
"canRename": true,
"canShare": true,
"canTrash": true,
"canUntrash": true
},
"viewersCanCopyContent": true,
"copyRequiresWriterPermission": false,
"writersCanShare": true,
"permissions": [
{
"kind": "drive#permission",
"id": "07468399490707249352",
"type": "user",
"emailAddress": "bayselonarrend@gmail.com",
"role": "owner",
"displayName": "Антон Титовец",
"photoLink": "https://lh3.googleusercontent.com/a/ACg8ocKYttNv2CZ-cTTuE90Zmht_PwnGc0YnjM1IUllXsTVORfZFVPU=s64",
"permissionDetails": [
{
"permissionType": "file",
"role": "owner",
"inherited": false
},
{
"permissionType": "file",
"role": "writer",
"inherited": true
}
],
"deleted": false,
"pendingOwner": false
}
],
"permissionIds": [
"07468399490707249352"
],
"folderColorRgb": "#8f8f8f",
"quotaBytesUsed": "0",
"isAppAuthorized": false,
"linkShareMetadata": {
"securityUpdateEligible": false,
"securityUpdateEnabled": true
},
"inheritedPermissionsDisabled": false
}