-
i got 400. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The code above will result in the full JSON return from the Instead, the More information on response handling can be found here. Exampleprint(x.command("GetSubmissions", ids=x.command("Submit",data)["body"]["resources"]))
|
Beta Was this translation helpful? Give feedback.
The code above will result in the full JSON return from the
Submit
operation being provided to theids
keyword for theGetSubmissions
method. This will produce an error.Instead, the
ids
keyword should be provided the contents of the resources branch from theSubmit
operation's JSON response. (Which in this case would be a list.)More information on response handling can be found here.
Example