GET
/
workspaces
curl --request GET \
  --url https://api.feedspace.io/v3/workspaces \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "current_page": 1,
    "data": [
      {
        "id": 5020,
        "unique_workspace_id": "workspace_XFNj94dgkDhc6lc5rsjF66nr",
        "name": "My First Workspace",
        "domain": null,
        "website_url": null,
        "logo": null,
        "description": null,
        "logo_url": null
      }
    ],
    "first_page_url": "https://api.feedspace.io/v3/workspaces?page=1",
    "from": 1,
    "next_page_url": null,
    "path": "https://api.feedspace.io/v3/workspaces",
    "per_page": 1000,
    "prev_page_url": null,
    "to": 1
  },
  "show_updated_banner": false,
  "updated_banner_video": "https://feedspace-test.s3.ap-south-1.amazonaws.com/uploads/F43kUl/video-feed/feed_MJcmzA81710841191347.mp4"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer

Page number (default: 1)

Response

200 - application/json

Workspaces list fetched successfully.

The response is of type object.

GET
/
workspaces
curl --request GET \
  --url https://api.feedspace.io/v3/workspaces \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "current_page": 1,
    "data": [
      {
        "id": 5020,
        "unique_workspace_id": "workspace_XFNj94dgkDhc6lc5rsjF66nr",
        "name": "My First Workspace",
        "domain": null,
        "website_url": null,
        "logo": null,
        "description": null,
        "logo_url": null
      }
    ],
    "first_page_url": "https://api.feedspace.io/v3/workspaces?page=1",
    "from": 1,
    "next_page_url": null,
    "path": "https://api.feedspace.io/v3/workspaces",
    "per_page": 1000,
    "prev_page_url": null,
    "to": 1
  },
  "show_updated_banner": false,
  "updated_banner_video": "https://feedspace-test.s3.ap-south-1.amazonaws.com/uploads/F43kUl/video-feed/feed_MJcmzA81710841191347.mp4"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer

Page number (default: 1)

Response

200 - application/json

Workspaces list fetched successfully.

The response is of type object.