Atlassian · Example Payload

Atlassian Atlassianremovecustomfieldcontextfromprojects Example

CodeCollaborationPlatformProductivitySoftware Development

Atlassian Atlassianremovecustomfieldcontextfromprojects 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": "atlassianRemovecustomfieldcontextfromprojects",
  "method": "POST",
  "path": "/rest/api/3/field/{fieldId}/context/{contextId}/project/remove",
  "summary": "Atlassian Remove Custom Field Context From Projects",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "projectIds": [
          "10001",
          "10005",
          "10006"
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "400",
      "contentType": "application/json",
      "example": "{\"errorMessages\":[\"The projectIds must not contain duplicates.\"],\"errors\":{}}"
    },
    {
      "status": "403",
      "contentType": "application/json",
      "example": "{\"errorMessages\":[\"Only Jira administrators can access custom field contexts.\"],\"errors\":{}}"
    },
    {
      "status": "404",
      "contentType": "application/json",
      "example": "{\"errorMessages\":[\"The context was not found.\"],\"errors\":{}}"
    }
  ]
}