Hi everyone
I’m kind of resurrecting this thread Multi-status responses (partial success in particular) that is not from me
but with a different context.
We are following JSON API Standard and one of our API is exposing non mandatory field. One of these fields is for an address. In case an address is filled in, we want to get GPS coordinates through Google MAPS API and store them.
When we are doing our Google MAPS call, multiple scenario can happen:
- Everything is fine, we get the coordinates
- Google MAPS returns multiple addresses because the provided address is not clear enough
- Something bad happened while calling Google MAPS API and we don’t get coordinates.
First case is simple, we save the result and that’s it but the 2 other cases perhaps need user interactions.
We could return an error, saying that we failed to determine the address so something is wrong with it and block the complete resource creation but, address is not a mandatory field and the issue is with some “processing” behind the scene that are not known by our users. In this case, this look weird to us to block the creation because if address wouldn’t have been provided, creation would have been successful.
And at the end, if we are facing issue 2 or 3, we can handle future behaviors like if there is no address provided.
Anyway, in these 2 cases, we want to be able to provide feedbacks to the API caller, saying that we saved everything but probably there is something bad with the address and also, why not, in case of scenario #2, provide the different options sent back by Google MAPS so that the user can pick the right one if he wants and modify the global resource.
In order to do that, we feel like a warning section would be helpful. As we want to follow JSON API Standard, we decided to add a “warning” section inside meta that looks like error section. But we are wondering if we can’t have it at root level like for error in future version.
Thanks for your feedback!
Thomas