Atlassian · Example Payload

Atlassian Atlassiancreatepriority Example

CodeCollaborationPlatformProductivitySoftware Development

Atlassian Atlassiancreatepriority 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": "atlassianCreatepriority",
  "method": "POST",
  "path": "/rest/api/3/priority",
  "summary": "Atlassian Create Priority",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "description": "My priority description",
        "iconUrl": "images/icons/priorities/major.png",
        "name": "My new priority",
        "statusColor": "#ABCDEF"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "example": "{\"id\":\"10001\"}"
    },
    {
      "status": "400",
      "contentType": "application/json",
      "example": "{\"errorMessages\":[\"The length of the description must not exceed 255 characters.\"],\"errors\":{}}"
    },
    {
      "status": "403",
      "contentType": "application/json",
      "example": "{\"errorMessages\":[\"Only Jira administrators can access issue type screen schemes.\"],\"errors\":{}}"
    }
  ]
}