Atlassian · Example Payload

Atlassian Atlassianupdatecustomfieldconfiguration Example

CodeCollaborationPlatformProductivitySoftware Development

Atlassian Atlassianupdatecustomfieldconfiguration 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": "atlassianUpdatecustomfieldconfiguration",
  "method": "PUT",
  "path": "/rest/api/3/app/field/{fieldIdOrKey}/context/configuration",
  "summary": "Atlassian Update Custom Field Configurations",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "configurations": [
          {
            "id": "10000"
          },
          {
            "configuration": {
              "maxValue": 10000,
              "minValue": 0
            },
            "id": "10001",
            "schema": {
              "properties": {
                "amount": {
                  "type": "number"
                },
                "currency": {
                  "type": "string"
                }
              },
              "required": [
                "amount",
                "currency"
              ]
            }
          }
        ]
      }
    }
  ],
  "responseExamples": []
}