Rate this page:
GET /api/admin/v1/orgs/{orgId}/workspaces/totalCount
string
Org ID
1 2 3
curl --request GET \
--url 'https://admin-portfolio.prod.atl-paas.net/api/admin/v1/orgs/{orgId}/workspaces/totalCount' \
--header 'Accept: application/json'
Successful operation
Content type | Value |
---|---|
application/json |
GET /api/admin/v1/orgs/{orgId}/workspaces/types
string
Org ID
1 2 3
curl --request GET \
--url 'https://admin-portfolio.prod.atl-paas.net/api/admin/v1/orgs/{orgId}/workspaces/types' \
--header 'Accept: application/json'
Successful operation
Content type | Value |
---|---|
application/json |
GET /api/admin/v1/orgs/{orgId}/workspaces/plans
string
Org ID
1 2 3
curl --request GET \
--url 'https://admin-portfolio.prod.atl-paas.net/api/admin/v1/orgs/{orgId}/workspaces/plans' \
--header 'Accept: application/json'
Successful operation
Content type | Value |
---|---|
application/json |
POST /api/admin/v1/orgs/{orgId}/workspaces
string
Org ID
Workspace request supporting enhanced Workspace searching.
anyOf [AndOperator, FieldOperand, SearchWorkspacesOperand]
Possible operators/operand in the event query.
true
string
A continuation token used for pagination.
true
integer
Specifies the maximum page size.
Array<SortField>
true
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
curl --request POST \
--url 'https://admin-portfolio.prod.atl-paas.net/api/admin/v1/orgs/{orgId}/workspaces' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"query": {
"and": []
},
"cursor": "<string>",
"limit": 32,
"sort": [
{
"field": "<string>",
"order": "asc"
}
]
}'
Successful operation
Content type | Value |
---|---|
application/json |
POST /api/admin/v2/orgs/{orgId}/workspaces
string
Org ID
Workspaces request supporting enhanced Workspace searching.
anyOf [AndOperator, FieldOperand, SearchWorkspacesOperand]
Possible operators/operand in the event query.
true
integer
Specifies the maximum page size.
20
, Minimum: 1
, Maximum: 1000
Array<SortField>
true
string
A base-64 encoded continuation token used for pagination. When a cursor is provided in the request body, no other properties may be present.
true
1 2 3 4 5 6 7
curl --request POST \
--url 'https://admin-portfolio.prod.atl-paas.net/api/admin/v2/orgs/{orgId}/workspaces' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"cursor": "c29tZS1iYXNlLTY0LWVuY29kZWQtY3Vyc29y"
}'
Successful operation
Content type | Value |
---|---|
application/json |
Rate this page: