Skip to main content
POST
/
api
/
core
/
google_drive
/
finder_view
/
extend
Get extended finder view items
curl --request POST \
  --url https://api.example.com/api/core/google_drive/finder_view/extend \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sync_setting_id": "<string>",
  "item_to_extend": {
    "id": "<string>",
    "name": {
      "de": "<string>",
      "en": "<string>"
    },
    "status": "not_selected",
    "type": "drive"
  },
  "selection_state_check_needed": true
}
'
[
  {
    "id": "<string>",
    "name": {
      "de": "<string>",
      "en": "<string>"
    },
    "type": "shared",
    "expandable": true,
    "status": "not_selected"
  }
]

Authorizations

Authorization
string
header
required

Bearer token authentication. Format: 'Bearer '

Body

application/json
sync_setting_id
string
required
item_to_extend
GoogleDriveDrive · object
required
selection_state_check_needed
boolean
required

Response

Successful Response

id
string
required
name
required

Pydantic model for a multilingual text.

type
enum<string>
required

Types of items displayed in the finder view for data sync configuration.

Available options:
shared,
site,
drive,
folder,
group,
file
expandable
boolean
required
status
enum<string>
default:not_selected
Available options:
fully_selected,
partially_selected,
not_selected