Skip to main content
GET
/
workspaces
/
my
cURL
curl --request GET \
  --url https://api.iolokis.com/workspaces/my \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "<string>",
    "description": "<string>",
    "address": "<string>",
    "accent_color": "<string>",
    "plan": "<string>",
    "created_by": 123,
    "user_count": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "deleted_at": "2023-11-07T05:31:56Z"
  }
]
A default workspace is created for each user when they sign up via the web app.

Authorizations

Authorization
string
header
required

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

Response

List of workspaces.

id
integer
name
string
description
string
address
string
accent_color
string

A hexadecimal color code used to color the workspace's UI.

plan
string

The plan of the workspace. This is used to determine the features available to the workspace.

created_by
integer
user_count
integer
created_at
string<date-time>
updated_at
string<date-time>
deleted_at
string<date-time> | null