Skip to main content
GET
/
api
/
v3
/
company
/
workspaces
List workspaces in your company
curl --request GET \
  --url https://paradigm.lighton.ai/api/v3/company/workspaces \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://paradigm.lighton.ai/api/v3/company/workspaces"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://paradigm.lighton.ai/api/v3/company/workspaces', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "count": 123,
  "results": [
    {
      "id": 123,
      "name": "<string>",
      "workspace_type": "<string>",
      "document_upload_method": "<string>",
      "description": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "user_role": "<string>"
    }
  ],
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

document_upload_method
enum<string>

Method for adding documents to this workspace: manual uploads or synced from datasources

  • manual - Manual
  • synced - Synced
Available options:
manual,
synced
group_id
integer
group_name
string
name
string
page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

workspace_type
enum<string>
  • company - Company
  • personal - Personal
  • custom - Custom
Available options:
company,
custom,
personal

Response

List of workspaces in the user's company

count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?page=4"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?page=2"