Developer
Get Support
Sign in
Get Support
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
  • Alerts
  • Audit Logs
  • Contacts
  • Custom user roles
  • Escalations
  • Forwarding rules
  • Heartbeats
  • Integrations
  • Integration actions
  • Integration outgoing filters
  • Maintenances
  • Notification rules
  • Notification rule steps
  • Policies
  • Team
  • Team Policies
  • Team roles
  • Routing rules
  • Schedules
  • Schedule on-calls
  • Schedule overrides
  • Schedule rotations
  • Schedule timelines
  • Syncs
  • Sync actions
  • Sync action groups
  • Other operations
Cloud
Jira Service Management ops / Reference / REST API

Team

Postman Collection
OpenAPI
POST

Enable Operations in team

Enable Operations in tea

read:ops-config:jira-service-management

Request

Path parameters

teamId

string

Required

Request bodyapplication/json

adminAccountIds

array<string>

Responses

Returned if the request is successful.

application/json

OpsEnableResponse
POST/v1/teams/{teamId}/enable-ops
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" ] }'
200Response
1 2 3 { "requestId": "d383c6e9-b1e7-4b59-9c35-72f1a2187777" }
GET

Get v1 teams {teamId} requests {requestId}

read:ops-config:jira-service-management

Request

Path parameters

requestId

string

Required

Responses

Returned if the request is successful.

application/json

RequestStatusResponse
GET/v1/teams/{teamId}/requests/{requestId}
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'
200Response
1 2 3 4 5 { "status": { "value": "SUCCESSFUL" } }
GET

List teams

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-management

Request

This request has no parameters.

Responses

Returned if the request is successful.

application/json

ListPlatformTeamResponse
GET/v1/teams
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'
200Response
1 2 3 4 5 6 7 8 { "platformTeams": [ { "teamId": "85f14c10-5bd7-4e98-aee5-511ce1f80086", "teamName": "Red Team" } ] }

Rate this page: