Skip to content

Commit

Permalink
added responder input to Shuffle API call
Browse files Browse the repository at this point in the history
  • Loading branch information
tbi88 committed Jun 15, 2023
1 parent f377df9 commit c3c5281
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 c3c5281

Please # to comment.