We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fb20d7 commit a1cdfe0Copy full SHA for a1cdfe0
umapi_client/connection.py
@@ -172,9 +172,9 @@ def execute_multiple(self, actions):
172
if self.logger: self.logger.warning("Sending action with no commands: %s", wire_dict)
173
wire_form.append(wire_dict)
174
if self.test_mode:
175
- body = self.make_call("/actions/%s?testOnly=true" % self.org_id, wire_form).json()
+ body = self.make_call("/action/%s?testOnly=true" % self.org_id, wire_form).json()
176
else:
177
- body = self.make_call("/actions/%s" % self.org_id, wire_form)
+ body = self.make_call("/action/%s" % self.org_id, wire_form)
178
if body.get("result") == "success":
179
return len(actions)
180
try:
0 commit comments