Skip to main content
GET
/
v1
/
bot
/
workspace
/
files
List Files
curl --request GET \
  --url https://api.boostgpt.co/v1/bot/workspace/files \
  --header 'Authorization: Bearer <token>'
{
  "files": [
    {
      "uuid": "<string>",
      "file_path": "<string>",
      "language": "<string>",
      "content": "<string>",
      "version": 123,
      "size_bytes": 123,
      "last_edited_by": "agent",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your API key

Query Parameters

project_id
string
required

Project ID

bot_id
string
required

Agent ID

workspace_uuid
string
required

Workspace UUID

Response

List of files

files
object[]