You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 17, 2026. It is now read-only.
The goal is to trigger an Azure pipeline via a POST HTTP request from a button, transferring the work item data. The pipeline then executes a Python script based on the provided work item data.
The problem is that the JSON format does not meet the requirements of the Azure Pipeline.
The following body request is transmitted:
{“System.Id”: 278, “Sender”: “WorkItemRESTRequestButton”}
However, one of the following formats is actually required for further processing (to my knowledge at least):
Is there a way to specify the JSON format or another possibility to pass the WorkItem data into the AzurePipeline or its PythonCode WITHOUT having to take a detour with Power Automate, which first gets the JSON-Format right?
The goal is to trigger an Azure pipeline via a POST HTTP request from a button, transferring the work item data. The pipeline then executes a Python script based on the provided work item data.
The problem is that the JSON format does not meet the requirements of the Azure Pipeline.
The following body request is transmitted:
{“System.Id”: 278, “Sender”: “WorkItemRESTRequestButton”}However, one of the following formats is actually required for further processing (to my knowledge at least):
or
Is there a way to specify the JSON format or another possibility to pass the WorkItem data into the AzurePipeline or its PythonCode WITHOUT having to take a detour with Power Automate, which first gets the JSON-Format right?