Skip to main content
POST
/
api
/
core
/
sharepoint
/
finder_view
/
extend_transient
Get extended finder view items (transient)
curl --request POST \
  --url https://api.example.com/api/core/sharepoint/finder_view/extend_transient \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "item_to_extend": {
    "id": "<string>",
    "is_folder": true,
    "drive_id": "<string>",
    "site_id": "<string>",
    "name": {
      "de": "<string>",
      "en": "<string>"
    },
    "status": "not_selected",
    "type": "DriveItemStructure"
  },
  "credential_id": "<string>"
}
'
[
  {
    "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
item_to_extend
DriveItemStructure · object
required
credential_id
string
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