Atlassian · Example Payload

Atlassian Atlassianbulksetissuepropertiesbyissue Example

CodeCollaborationPlatformProductivitySoftware Development

Atlassian Atlassianbulksetissuepropertiesbyissue 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": "atlassianBulksetissuepropertiesbyissue",
  "method": "POST",
  "path": "/rest/api/3/issue/properties/multi",
  "summary": "Atlassian Bulk Set Issue Properties By Issue",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "issues": [
          {
            "issueID": 1000,
            "properties": {
              "myProperty": {
                "owner": "admin",
                "weight": 100
              }
            }
          },
          {
            "issueID": 1001,
            "properties": {
              "myOtherProperty": {
                "cost": 150,
                "transportation": "car"
              }
            }
          }
        ]
      }
    }
  ],
  "responseExamples": []
}