cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GOOGLE_DRIVE_LIST_FILES' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "GOOGLE_DRIVE_LIST_FILES", "parameters": { "includeFolders": true, "parentId": "<string>", "pageSize": "<string>", "includeSharedItems": true, "additionalFields": {}, "paginationParameters": { "pageCursor": "<string>" } } } '
Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Include Folders
The folder to save files to. Defaults to the user's root folder if left blank
Page Size : Specify the number of files to include on a page. Accepts values from 1 to 1000. Defaults to 100 if unspecified. (example: "100")
Include Shared Drive Items : Specify whether search results should include files in shared drives. Defaults to false.
Additional fields to update in JSON format. (example: { "supportsAllDrives": true })
Pagination Parameters
Page Cursor
Success
Was this page helpful?