Versions Compared

Key

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

...

From here, there should be at least one webhook function configured to trigger actions in FlexDeploy based on the payload content. There are a variety of actions which can be performed, including building a project, creating a package, managing a release, committing to source control, and more. Check out the Webhook Function Samples and the FlexDeploy Methods pages for more ideas.

Payload Format

The following is a reference of the payload format which is sent from the browser extension. Action name and source URL are sent with each webhook and properties will vary based on the properties in your webhook action.

Code Block
languagejson
{
  "actionName": "Name of action sent",
  "fromURL": "URL of the active window the sender was on when the webhook was sent",
  "properties": [
    "Property A Name": "Property A Value",
    "Property B Name": "Property B Value",
    "List Property C Name": ["Property C Value1", "Property C Value2", "Property C Value3"]
  ]
}