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>",
"site_id": "<string>",
"name": {
"en": "<string>",
"de": "<string>",
"es": "<string>",
"fr": "<string>",
"it": "<string>",
"nl": "<string>",
"pl": "<string>",
"pt": "<string>",
"sv": "<string>"
},
"status": "not_selected",
"type": "SitePagesItemStructure"
}
],
"loaded_item_ids": [
"<string>"
]
}
'