Atlassian · Example Payload

Atlassian Atlassiancreateworkflowscheme Example

CodeCollaborationPlatformProductivitySoftware Development

Atlassian Atlassiancreateworkflowscheme 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": "atlassianCreateworkflowscheme",
  "method": "POST",
  "path": "/rest/api/3/workflowscheme",
  "summary": "Atlassian Create Workflow Scheme",
  "requestExamples": [
    {
      "contentType": "application/json",
      "example": {
        "defaultWorkflow": "jira",
        "description": "The description of the example workflow scheme.",
        "issueTypeMappings": {
          "10000": "scrum workflow",
          "10001": "builds workflow"
        },
        "name": "Example workflow scheme"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "201",
      "contentType": "application/json",
      "example": "{\"defaultWorkflow\":\"jira\",\"description\":\"The description of the example workflow scheme.\",\"draft\":false,\"id\":101010,\"issueTypeMappings\":{\"10000\":\"scrum workflow\",\"10001\":\"builds workflow\"},\"name\":\"Example workflow scheme\",\"self\":\"https://your-domain.atlassian.net/rest/api/3/workflowscheme/101010\"}"
    }
  ]
}