County mobile inspectors need to create and read permit resources over HTTP using JSON payloads in a common modern API style. Which approach matches that requirement?
Select an answer to reveal the explanation.
Short Explanation
Inspectors just want clean HTTP calls that say "here's a permit resource" and get JSON back—classic REST. It is the common modern style for mobile and web clients talking to cloud APIs. You do not need SOAP envelopes or overnight file dumps for that day-to-day pattern.
Full Explanation
REST web services typically expose resources over HTTP with representations such as JSON, which fits mobile and browser clients in modern cloud integrations. Persistent sockets, SOAP envelopes, and batch file drops address different integration needs. Cloud+ expects recognition of REST as the prevalent resource-oriented HTTP API style for system integration.