cURL
curl --request POST \ --url https://api.example.com/api/core/google_drive/finder_view/extend_transient \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "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" }, "single_page": true, "page_size": 123, "page_token": "<string>" } '
{ "items": [ { "id": "<string>", "name": { "en": "<string>", "de": "<string>", "es": "<string>", "fr": "<string>", "it": "<string>", "nl": "<string>", "pl": "<string>", "pt": "<string>", "sv": "<string>" }, "type": "shared", "expandable": true, "selectable": true, "ingestible": true, "status": "not_selected", "mime_type": "<string>" } ], "next_page_token": "<string>" }
Bearer token authentication. Format: 'Bearer '
Show child attributes
Successful Response
Was this page helpful?