Rate this page:
POST /api/v1/cloud-provisioner/validate
1 2 3 4 5 6 7 8 9 10 11 12 13
curl --request POST \
--url 'https://admin-portfolio.prod.atl-paas.net/api/v1/cloud-provisioner/validate' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"input": {
"entityId": "<string>",
"atlassianAccountIdentifier": "<string>"
},
"additionalStates": {
"linkedOrganization": {}
}
}'
Successful operation
Content type | Value |
---|---|
application/json |
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/v2/orgs/{orgId}/workspaces
string
Org ID
Workspaces request supporting enhanced Workspace searching.
anyOf [AndOperator, FieldOperand, SearchWorkspacesOperand, FeatureFilter]
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 |
GET /api/admin/v1/workspaces/{workspaceAri}
string
workspace ARI
1 2 3
curl --request GET \
--url 'https://admin-portfolio.prod.atl-paas.net/api/admin/v1/workspaces/{workspaceAri}' \
--header 'Accept: application/json'
Successful operation
Content type | Value |
---|---|
application/json |
POST /api/admin/v1/orgs/{orgId}/workspaces/{workspaceAri}/_link
string
Org ID
string
workspace ARI
Optional link request body. Both callbackUrl
and audience
must be provided for the callbackUrl to be successfully invoked.
string
true
string
true
JSON object containing metadata map.
true
1 2 3 4 5 6 7 8
curl --request POST \
--url 'https://admin-portfolio.prod.atl-paas.net/api/admin/v1/orgs/{orgId}/workspaces/{workspaceAri}/_link' \
--header 'Content-Type: application/json' \
--data '{
"callbackUrl": "<string>",
"audience": "<string>",
"metadata": {}
}'
Successful operation
A schema has not been defined for this response code.
POST /api/admin/v1/orgs/{orgId}/workspaces/{workspaceAri}/_unlink
string
Org ID
string
workspace ARI
1 2
curl --request POST \
--url 'https://admin-portfolio.prod.atl-paas.net/api/admin/v1/orgs/{orgId}/workspaces/{workspaceAri}/_unlink'
Successful operation
A schema has not been defined for this response code.
POST /api/admin/v1/orgs/{orgId}/workspaces/_create
string
Organization id which workspace is linked to it.
Json data describing the workspace to be created. See typeKey for supported workspace types.
string
false
Valid values: bitbucket
string
false
string
false
1 2 3 4 5 6 7 8 9
curl --request POST \
--url 'https://admin-portfolio.prod.atl-paas.net/api/admin/v1/orgs/{orgId}/workspaces/_create' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"typeKey": "bitbucket",
"name": "<string>",
"slug": "<string>"
}'
Successful operation
Content type | Value |
---|---|
application/json |
GET /api/admin/v1/orgs/{orgId}/workflows/{workflowId}/status
string
Org ID
string
Workflow ID
1 2 3
curl --request GET \
--url 'https://admin-portfolio.prod.atl-paas.net/api/admin/v1/orgs/{orgId}/workflows/{workflowId}/status' \
--header 'Accept: application/json'
Successful operation
Content type | Value |
---|---|
application/json |
Rate this page: