Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Simplified, the webhook structure can be seen below. Full details on the webhook data structure can be found in this Atlassian documentation.

Code Block
 {
    "timestamp",
    "webhookEvent",
    "issue_event_type_name",
    "user": {
        //--> See User shape in thelinked linkeddocumentation
document    },
    "issue": {
       // --> See Issue shape in thelinked linkeddocumentation
document    },
    "changelog" : {
     // See Changelog shape in the linked document
   },
   "comment" : {
     // See Comment--> See Changelog shape in inlinked the linkeddocumentation
document    }

}

The $context reference used in all templates represents this webhook data structure. It important to know that it is a reference to an object of type ObjectNode.

...