Get SupportBack to App
HomeQlty CLIQlty CloudCode CoverageAPI ReferenceChangelog
HomeQlty CLIQlty CloudCode CoverageAPI ReferenceChangelog
  • API Overview
    • Introduction
  • Initial API Endpoints
LogoLogo
Get SupportBack to App
Initial API EndpointsWorkspaces

Beta
GET
https://host.com/workspaces
GET
/workspaces
1import requests
2
3url = "https://host.com/workspaces"
4
5headers = {"Authorization": "Bearer <token>"}
6
7response = requests.get(url, headers=headers)
8
9print(response.json())
Try it
200Retrieved
1{
2 "data": [
3 {
4 "id": "1c47b6fd-db56-4fbd-9cf0-4d88f9631050",
5 "key": "acmeco",
6 "avatarUrl": "https://assets.github.com/acmeco.png",
7 "providerUrl": "https://github.com/acmeco",
8 "createdAt": "2023-01-15T08:30:00Z",
9 "updatedAt": "2023-02-20T14:45:00Z"
10 },
11 {
12 "id": "7a8b9c0d-1e2f-3g4h-5i6j-7k8l9m0n1o2p",
13 "key": "skytech",
14 "avatarUrl": "https://assets.github.com/skytech.png",
15 "providerUrl": "https://github.com/skytech",
16 "createdAt": "2023-03-10T11:20:00Z",
17 "updatedAt": "2023-04-05T09:15:00Z"
18 }
19 ],
20 "meta": {
21 "hasMore": false
22 }
23}
Was this page helpful?
Previous

Get Workspace

Next
Built with
List Workspaces accessible to the authenticated token
List Workspaces

Authentication

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

Query Parameters

page[limit]integerOptional
Maximum number of items to return in a single response
page[offset]integerOptional
Number of items to skip for pagination

Response

This endpoint returns an object.
datalist of objects
List of Workspace items returned in the response
metaobject
Pagination metadata for the response

Errors

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