Atlassian · Example Payload

Atlassian Atlassianupdateissuefieldoption Example

CodeCollaborationPlatformProductivitySoftware Development

Atlassian Atlassianupdateissuefieldoption 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": "atlassianUpdateissuefieldoption",
  "method": "PUT",
  "path": "/rest/api/3/field/{fieldKey}/option/{optionId}",
  "summary": "Atlassian Update Issue Field Option",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "config": {
          "attributes": [],
          "scope": {
            "global": {},
            "projects": [],
            "projects2": [
              {
                "attributes": [
                  "notSelectable"
                ],
                "id": 1001
              },
              {
                "attributes": [
                  "notSelectable"
                ],
                "id": 1002
              }
            ]
          }
        },
        "id": 1,
        "properties": {
          "description": "The team's description",
          "founded": "2016-06-06",
          "leader": {
            "email": "lname@example.com",
            "name": "Leader Name"
          },
          "members": 42
        },
        "value": "Team 1"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": "{\"id\":1,\"value\":\"Team 1\",\"properties\":{\"leader\":{\"name\":\"Leader Name\",\"email\":\"lname@example.com\"},\"members\":42,\"description\":\"The team's description\",\"founded\":\"2016-06-06\"},\"config\":{\"scope\":{\"projects\":[],\"projects2\":[{\"id\":1001,\"attributes\":[\"notSelectable\"]},{\"id\":1002,\"attributes\":[\"notSelectable\"]}],\"global\":{}},\"attributes\":[]}}"
    }
  ]
}