Skip to content Skip to sidebar Skip to footer

Azure Automation: Parse Webhookdata With A Python Runbook

In azure automation, when you define a webhook for a runbook the headers of the request are passed to the runbook via the WEBHOOKDATA input parameter. For python workbooks, the par

Solution 1:

actually I think that your problem is a malformed JSON string. Notice that your string does not have quotes:

{WebhookName:python-Test-Arguments}

It should be something like this:

{"WebhookName":"python-Test-Arguments"}

To solve this you need to fix your response string. This is a thread that talk about this kind of operation.

Post a Comment for "Azure Automation: Parse Webhookdata With A Python Runbook"