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>",
"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"
},
"credential_id": "<string>",
"single_page": true,
"page_size": 123,
"page_token": "<string>"
}
'