Responses are generally made up of three components. The net.http.*
API returns responses in these three parts so you can handle the responses appropriately:
...
Expand | ||
---|---|---|
| ||
The status includes standardized codes and messages for certain request outcomes. When working with web services you’ll commonly see:
In the above screenshot, the status code of 201 means resource was successfully created. |
...