curl --request POST \
--url https://api.example.com/api/core/google_drive/finder_view/extend \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sync_setting_id": "<string>",
"item_to_extend": {
"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": "drive"
},
"selection_state_check_needed": true,
"single_page": true,
"page_size": 123,
"page_token": "<string>"
}
'