• Orgs
  • Users
  • Groups
  • Domains
  • Events
  • Policies
  • Directory
  • Workspaces
Cloud
Organizations REST API / Reference / REST API

Workspaces

Postman Collection
OpenAPI

Org Workspaces APIs

POST

Get list of workspacesExperimental

A workspace refers to a specific instance of an Atlassian product that is accessed through a unique URL. Whenever a user initiates or adds a new product instance, it results in the creation of a distinct workspace.

This API will:

  • Return a paginated list of workspaces in a given org
  • Return more details about an organization's products (including product URL).

Request

Path parameters

orgId

string

Required

Request bodyapplication/json

query

anyOf [AndOperator, FieldOperand, SearchWorkspacesOperand, FeatureFilter, PolicyFilter]

limit

integer

sort

array<SortField>

cursor

string

Responses

Successful operation

application/json

PageDataResponseV2
POST/v2/orgs/{orgId}/workspaces
1 2 3 4 5 6 7 8 curl --request POST \ --url 'https://api.atlassian.com/admin/v2/orgs/{orgId}/workspaces' \ --header 'Authorization: Bearer <access_token>' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "limit": 20 }'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 { "data": [ { "id": "<string>", "type": "<string>", "attributes": { "name": "<string>", "typeKey": "<string>", "type": "<string>", "owner": "<string>", "status": "online", "statusDetails": [ "<string>" ], "icons": {}, "avatars": {}, "labels": [ "<string>" ], "sandbox": { "type": "CHILD" }, "usage": 2154, "capacity": 2154, "createdAt": "<string>", "createdBy": "<string>", "updatedAt": "<string>", "hostUrl": "<string>", "realm": "<string>", "regions": [ "<string>" ] }, "links": { "self": "<string>" }, "relationships": {} } ], "links": { "self": "<string>", "prev": "<string>", "next": "<string>" }, "meta": { "pageSize": 2154, "startIndex": 2154, "endIndex": 2154, "total": 2154 } }

Rate this page: