Skip to main content
GET
/
computers
/
{id}
/
files
List Files
curl --request GET \
  --url https://www.orgo.ai/api/computers/{id}/files \
  --header 'Authorization: Bearer <token>'
{
  "files": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "filename": "<string>",
      "size_bytes": 123,
      "content_type": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "desktop_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}
List all files associated with a computer, including both uploaded files and exported files.

Authorizations

Authorization
string
header
required

API key authentication. Format: sk_live_...

Path Parameters

id
string
required

Computer ID

Response

List of files

files
object[]