Atlassian · Example Payload

Atlassian Atlassiancreateissuesecurityscheme Example

CodeCollaborationPlatformProductivitySoftware Development

Atlassian Atlassiancreateissuesecurityscheme Example is an example object payload from Atlassian, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "atlassianCreateissuesecurityscheme",
  "method": "POST",
  "path": "/rest/api/3/issuesecurityschemes",
  "summary": "Atlassian Create Issue Security Scheme",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "description": "Newly created issue security scheme",
        "levels": [
          {
            "description": "Newly created level",
            "isDefault": true,
            "members": [
              {
                "parameter": "administrators",
                "type": "group"
              }
            ],
            "name": "New level"
          }
        ],
        "name": "New security scheme"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "example": "{\"id\":\"10001\"}"
    },
    {
      "status": "400",
      "contentType": "application/json",
      "example": "{\"errorMessages\":[\"The length of the description must not exceed 4,000 characters.\"],\"errors\":{}}"
    },
    {
      "status": "403",
      "contentType": "application/json",
      "example": "{\"errorMessages\":[\"You are not authorized to perform this action. Administrator privileges are required.\"],\"errors\":{}}"
    }
  ]
}