Atlassian · Example Payload

Atlassian Atlassiancreatestatuses Example

CodeCollaborationPlatformProductivitySoftware Development

Atlassian Atlassiancreatestatuses 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": "atlassianCreatestatuses",
  "method": "POST",
  "path": "/rest/api/3/statuses",
  "summary": "Atlassian Bulk Create Statuses",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "scope": {
          "project": {
            "id": "1"
          },
          "type": "PROJECT"
        },
        "statuses": [
          {
            "description": "The issue is resolved",
            "name": "Finished",
            "statusCategory": "DONE"
          }
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": "[{\"description\":\"The issue is resolved\",\"id\":\"1000\",\"name\":\"Finished\",\"scope\":{\"project\":{\"id\":\"1\"},\"type\":\"PROJECT\"},\"statusCategory\":\"DONE\",\"usages\":[],\"workflowUsages\":[]}]"
    },
    {
      "status": "400",
      "contentType": "application/json",
      "example": "{\"errorMessages\":[\"The name is too long, maxSize=255\"],\"errors\":{}}"
    }
  ]
}