Enable Operations in tea
read:ops-config:jira-service-managementstring
Requiredarray<string>
Returned if the request is successful.
1
2
3
4
5
6
7
8
9
10
11
curl --request POST \
--url 'https://api.atlassian.com/jsm/ops/api/{cloudId}/v1/teams/{teamId}/enable-ops' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"adminAccountIds": [
"12435687725",
"54763838909"
]
}'1
2
3
{
"requestId": "d383c6e9-b1e7-4b59-9c35-72f1a2187777"
}read:ops-config:jira-service-managementstring
RequiredReturned if the request is successful.
1
2
3
4
curl --request GET \
--url 'https://api.atlassian.com/jsm/ops/api/{cloudId}/v1/teams/{teamId}/requests/{requestId}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'1
2
3
4
5
{
"status": {
"value": "SUCCESSFUL"
}
}Lists operations teams based on the user's role. If the user has admin rights, all teams are listed; otherwise, only the teams the user is a member of are shown.
read:ops-config:jira-service-managementThis request has no parameters.
Returned if the request is successful.
1
2
3
4
curl --request GET \
--url 'https://api.atlassian.com/jsm/ops/api/{cloudId}/v1/teams' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'1
2
3
4
5
6
7
8
{
"platformTeams": [
{
"teamId": "85f14c10-5bd7-4e98-aee5-511ce1f80086",
"teamName": "Red Team"
}
]
}Rate this page: