curl --request GET \
--url https://api.zo.computer/connections/drive/files \
--header 'Authorization: Bearer <token>'{
"files": [
{
"id": "<string>",
"name": "<string>",
"mimeType": "<string>",
"isFolder": true,
"modifiedTime": "<string>",
"size": 123,
"iconLink": "<string>",
"parent": "<string>"
}
]
}List available files from user’s Google Drive.
curl --request GET \
--url https://api.zo.computer/connections/drive/files \
--header 'Authorization: Bearer <token>'{
"files": [
{
"id": "<string>",
"name": "<string>",
"mimeType": "<string>",
"isFolder": true,
"modifiedTime": "<string>",
"size": 123,
"iconLink": "<string>",
"parent": "<string>"
}
]
}Zo API key (zo_sk_...)
Optional folder ID to list contents of
Optional Pipedream connection id to select account
Successful Response
Response model for list files endpoint.
Show child attributes