Atlassian · Example Payload

Atlassian Atlassiancreateresolution Example

CodeCollaborationPlatformProductivitySoftware Development

Atlassian Atlassiancreateresolution 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": "atlassianCreateresolution",
  "method": "POST",
  "path": "/rest/api/3/resolution",
  "summary": "Atlassian Create Resolution",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "description": "My resolution description",
        "name": "My new resolution"
      }
    }
  ],
  "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\":[\"You are not authorized to perform this action. Administrator privileges are required.\"],\"errors\":{}}"
    }
  ]
}