• Announcement banner
  • App data policies (EAP)
  • Application roles
  • Audit records
  • Avatars
  • Classification levels
  • Dashboards
  • Filters
  • Filter sharing
  • Group and user picker
  • Groups
  • Issues
  • UI modifications (apps)
  • Issue attachments
  • Issue comments
  • Issue comment properties
  • Issue fields
  • Issue field configurations
  • Issue custom field contexts
  • Issue custom field options
  • Issue custom field options (apps)
  • Issue custom field values (apps)
  • Issue custom field configuration (apps)
  • Issue navigator settings
  • Issue notification schemes
  • Issue priorities
  • Issue properties
  • Issue resolutions
  • Issue security level
  • Issue security schemes
  • Issue types
  • Issue type schemes
  • Issue type screen schemes
  • Issue type properties
  • Issue votes
  • Issue watchers
  • Issue worklogs
  • Issue worklog properties
  • Jira expressions
  • Jira settings
  • JQL
  • JQL functions (apps)
  • Labels
  • License metrics
  • Myself
  • Permissions
  • Permission schemes
  • Projects
  • Project avatars
  • Project categories
  • Project classification levels
  • Project components
  • Project email
  • Project features
  • Project key and name validation
  • Project permission schemes
  • Project properties
  • Project roles
  • Project role actors
  • Project types
  • Project versions
  • Screens
  • Screen tabs
  • Screen tab fields
  • Screen schemes
  • Server info
  • Status
  • Tasks
  • Time tracking
  • Users
  • User properties
  • Webhooks
  • Workflows
  • Workflow transition rules
  • Workflow schemes
  • Workflow scheme project associations
  • Workflow scheme drafts
  • Workflow statuses
  • Workflow status categories
  • Workflow transition properties
  • App properties
  • Dynamic modules
  • App migration
  • Service Registry
Cloud
Jira Cloud platform / Reference / REST API v2

Classification levels

Postman Collection
OpenAPI

This resource represents classification levels.

GET

Get all classification levelsExperimental

Returns all classification levels.

Permissions required: None.

Data Security Policy: Exempt from app access rules
Scopes

Connect app scope requiredREAD

ClassicRECOMMENDED:read:jira-work
Granular:read:project:jira

Request

Query parameters

status

array<string>

orderBy

string

Responses

Returned if the request is successful.

application/json

DataClassificationLevelsBean

The data classification.

GET/rest/api/2/classification-levels
1 2 3 4 5 6 7 8 9 10 11 12 // This sample uses Atlassian Forge // https://developer.atlassian.com/platform/forge/ import api, { route } from "@forge/api"; const response = await api.asUser().requestJira(route`/rest/api/2/classification-levels`, { headers: { 'Accept': 'application/json' } }); console.log(`Response: ${response.status} ${response.statusText}`); console.log(await response.json());
200Response
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 { "classifications": [ { "id": "ari:cloud:platform::classification-tag/5bfa70f7-4af1-44f5-9e12-1ce185f15a38", "status": "published", "name": "Restricted", "rank": 1, "description": "Data we hold that would be very damaging and would cause loss of trust with customers and present legal risk to Atlassian and/or customers if mishandled", "guideline": "Access to data must be restricted to only individuals who need access in order to perform their job duties.", "color": "RED" }, { "id": "ari:cloud:platform::classification-tag/bd58e74c-c31b-41a7-ba69-9673ebd9dae9", "status": "archived", "name": "Protected", "rank": 2, "description": "Data we hold that could cause loss of trust with customers or present legal risk to Atlassian if mishandled", "guideline": "Access to systems or APIs mapping data to other identifiers must be carefully controlled.", "color": "ORANGE" }, { "id": "ari:cloud:platform::classification-tag/a82d653e-1035-4aa2-b9de-4265511fd487", "status": "published", "name": "Confidential", "rank": 3, "description": "Data we hold that would likely be damaging and could cause loss of trust with our customers if mishandled", "guideline": "Data should be encrypted at rest and in transit.", "color": "BLUE" }, { "id": "ari:cloud:platform::classification-tag/a82d653e-1035-4aa2-b9de-4265511fd487", "status": "published", "name": "system-tag" } ] }

Rate this page: