Atlassian · Example Payload

Atlassian Atlassianlistsubscribablewebhooktypes Example

CodeCollaborationPlatformProductivitySoftware Development

Atlassian Atlassianlistsubscribablewebhooktypes 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": "atlassianListSubscribableWebhookTypes",
  "method": "GET",
  "path": "/hook_events/{subject_type}",
  "summary": "Atlassian List Subscribable Webhook Types",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "response",
      "example": {
        "page": 1,
        "pagelen": 30,
        "size": 4,
        "values": [
          {
            "category": "Repository",
            "description": "Whenever a repository push occurs",
            "event": "repo:push",
            "label": "Push"
          },
          {
            "category": "Repository",
            "description": "Whenever a repository fork occurs",
            "event": "repo:fork",
            "label": "Fork"
          },
          {
            "category": "Repository",
            "description": "Whenever a repository import occurs",
            "event": "repo:imported",
            "label": "Import"
          },
          {
            "category": "Pull Request",
            "label": "Approved",
            "description": "When someone has approved a pull request",
            "event": "pullrequest:approved"
          }
        ]
      }
    }
  ]
}