Org Workspaces APIs
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:
string
RequiredanyOf [AndOperator, NorOperator, FieldOperand, SearchWorkspacesOperand, FeatureFilter, PolicyFilter]
integer
array<SortField>
string
Successful operation
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 '{
"cursor": "c29tZS1iYXNlLTY0LWVuY29kZWQtY3Vyc29y"
}'
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: