For the complete documentation index, see llms.txt. This page is also available as Markdown.

List workspaces

List all workspaces.

get
Path parameters
orgstring · min: 1 · max: 128Required

Org is the organisation identifier.

Example: ipt
projectstring · min: 1 · max: 128Required

Project is the project identifier.

Example: bf
Query parameters
limitinteger · int64 · min: 1 · max: 1000Optional

Limit is the number of records to return for a page.

Default: 30Example: 30
pageinteger · int64 · min: 1Optional

Page is the page number to return relative to the page 'limit'.

Default: 1Example: 1
searchTermstringOptional

Filter results by partial name match

Default: ""Example: mysta
sortstring · enumOptional

Sort order for results

Default: name,ASCExample: updated,DESCPossible values:
statusstring[]Optional

Status of the execution

Example: ["Nulla libero.","Ullam eius nisi non excepturi.","Inventore earum quasi pariatur architecto aut veritatis.","Voluptas aut."]
tagsstring[]Optional

Comma separated list of tags to filter by

Example: ["Consequatur perspiciatis.","Perferendis assumenda id quaerat.","Quas suscipit non temporibus.","Corporis placeat optio."]
Header parameters
Harness-Accountstring · min: 1 · max: 128Required

Account is the internal customer account ID.

Example: s
Responses
200

OK response.

application/json
get/api/orgs/{org}/projects/{project}/workspaces
GET /api/orgs/{org}/projects/{project}/workspaces HTTP/1.1
Host: localhost:80
Harness-Account: s
Accept: */*
[
  {
    "account": "s",
    "created": 1799259019767930600,
    "description": "this is a more detailed explanation of the resource.",
    "identifier": "f",
    "name": "resource name",
    "org": "qr5",
    "project": "15",
    "status": "inactive",
    "updated": 6204310867044018000
  },
  {
    "account": "s",
    "created": 1799259019767930600,
    "description": "this is a more detailed explanation of the resource.",
    "identifier": "f",
    "name": "resource name",
    "org": "qr5",
    "project": "15",
    "status": "inactive",
    "updated": 6204310867044018000
  }
]

Last updated

Was this helpful?