You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 24, 2018. It is now read-only.
Currently if a request contains multiple invalid request args, we compile an error string showing all the issues. However, we don't pass all the different fields that errored. From @rmccue in slack:
new WP_Error( 'json_missing_field', 'Missing $field', array( 'key' => $field ) )
Would output as [ { "code": "json_missing_field", "message": "Missing abc", "data": { "key": "abc" } }]