We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the search api: https://developer.box.com/reference/get-search/
"query" is a required field. #341
But also the error message for this field missing is incorrect. The message returned is:
{ "type": "error", "status": 400, "code": "bad_request", "context_info": { "errors": [ { "reason": "missing_parameter", "name": "to_search", "message": "'to_search' is required" } ] }, "help_url": "http:\/\/developers.box.com\/docs\/#errors", "message": "Bad Request", "request_id": "..." }
Notice to the returned field is to_search
to_search
The correct field should be query
query
{ "type": "error", "status": 400, "code": "bad_request", "context_info": { "errors": [ { "reason": "missing_parameter", "name": "query", "message": "'query' is required" } ] }, "help_url": "http:\/\/developers.box.com\/docs\/#errors", "message": "Bad Request", "request_id": "..." }
The text was updated successfully, but these errors were encountered:
bszwarc
No branches or pull requests
Description of the issue
When using the search api: https://developer.box.com/reference/get-search/
"query" is a required field. #341
But also the error message for this field missing is incorrect. The message returned is:
Notice to the returned field is
to_search
The correct field should be
query
Current content
Expected content
The text was updated successfully, but these errors were encountered: