Skip to content

Commit

Permalink
Merge pull request #1194 from tbi88/shuffle-responder
Browse files Browse the repository at this point in the history
added responder input to Shuffle API call
  • Loading branch information
nusantara-self authored Sep 19, 2024
2 parents 06c0ed4 + c3c5281 commit 539b696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion responders/Shuffle/shuffle.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def run(self):
headers = {
"Authorization": "Bearer %s" % self.api_key
}
r = requests.post(parsed_url, headers=headers)
r = requests.post(parsed_url, json=self.get_data(), headers=headers)
if r.status_code == 200:
self.report({"Message": "Executed workflow"})
else:
Expand Down

0 comments on commit 539b696

Please sign in to comment.