Skip to main content
POST
/
api
/
core
/
sharepoint
/
finder_view
/
update
Update finder view selection
curl --request POST \
  --url https://api.example.com/api/core/sharepoint/finder_view/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sync_setting_id": "<string>",
  "selection_items": [
    {
      "id": "<string>",
      "is_folder": true,
      "drive_id": "<string>",
      "site_id": "<string>",
      "name": {
        "de": "<string>",
        "en": "<string>"
      },
      "status": "not_selected",
      "type": "DriveItemStructure"
    }
  ],
  "loaded_item_ids": [
    "<string>"
  ]
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Format: 'Bearer '

Body

application/json
sync_setting_id
string
required
selection_items
(DriveItemStructure · object | DriveStructure · object | SiteStructure · object | SitePagesStructure · object)[]
required
loaded_item_ids
string[]
required

Response

Successful Response

message
string
required