Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2025 06:23 AM
Hello @Andolina1,
try to send your payload like:
body = {
'curr_working_user': f'{parameters}'
}
response = requests.post(url, headers=headers, json=body)
the pipeline's parameter should be named curr_working_user. With these changes your setup should work correctly.
If you have more than 1 parameter you can:
- Create a string parameter in the pipeline named for ex. "request_body"
- You send your payload like
body = {
'request_body': json.dumps(parameters) # if parameters is a json/dictonary
}
response = requests.post(url, headers=headers, json=body) - get your payload as a string with @pipeline().parameters.request_bod
- if you need the json, de-serialize the string with @json(pipeline().parameters.request_body)
I hope this is gonna work for you as well, for me it did.
Kind regards,
RF