Skip to main content
POST
/
api
/
core
/
sharepoint
/
finder_view
/
initial_transient
Get initial finder view items (transient)
curl --request POST \
  --url https://api.example.com/api/core/sharepoint/finder_view/initial_transient \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "credential_id": "<string>",
  "domain": "<string>",
  "site_name": "<string>",
  "base": "<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
credential_id
string
required
domain
string
required
site_name
string
required
base
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