Atlassian · Schema

RegisteredWebhook

ID of a registered webhook or error messages explaining why a webhook wasn't registered.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
createdWebhookId integer The ID of the webhook. Returned if the webhook is created.
errors array Error messages specifying why the webhook creation failed.
View JSON Schema on GitHub

JSON Schema

atlassian-registeredwebhook-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RegisteredWebhook",
  "title": "RegisteredWebhook",
  "additionalProperties": false,
  "description": "ID of a registered webhook or error messages explaining why a webhook wasn't registered.",
  "properties": {
    "createdWebhookId": {
      "description": "The ID of the webhook. Returned if the webhook is created.",
      "format": "int64",
      "type": "integer"
    },
    "errors": {
      "description": "Error messages specifying why the webhook creation failed.",
      "items": {
        "description": "Error messages specifying why the webhook creation failed.",
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}