Atlassian · Example Payload

Atlassian Atlassianremoveissuetypesfromglobalfieldconfigurationscheme Example

CodeCollaborationPlatformProductivitySoftware Development

Atlassian Atlassianremoveissuetypesfromglobalfieldconfigurationscheme 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": "atlassianRemoveissuetypesfromglobalfieldconfigurationscheme",
  "method": "POST",
  "path": "/rest/api/3/fieldconfigurationscheme/{id}/mapping/delete",
  "summary": "Atlassian Remove Issue Types From Field Configuration Scheme",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "issueTypeIds": [
          "10000",
          "10001",
          "10002"
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "400",
      "contentType": "application/json",
      "example": "{\"errorMessages\":[\"The issueTypeIds must not contain duplicates.\"],\"errors\":{}}"
    },
    {
      "status": "403",
      "contentType": "application/json",
      "example": "{\"errorMessages\":[\"Only Jira administrators can access field configurations.\"],\"errors\":{}}"
    },
    {
      "status": "404",
      "contentType": "application/json",
      "example": "{\"errorMessages\":[\"The field configuration scheme was not found.\"],\"errors\":{}}"
    }
  ]
}