curl --request POST \
--url https://api.example.com/api/core/google_drive/finder_view/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sync_setting_id": "<string>",
"selection_items": [
{
"id": "<string>",
"name": {
"de": "<string>",
"en": "<string>"
},
"status": "not_selected",
"type": "drive"
}
],
"loaded_item_ids": [
"<string>"
]
}
'