The AL HttpClient object provides a base class for handling HTTP requests and responses from web resources (identified by a URI). With the HttpClient class, you can send GET, DELETE, POST, and PUT HTTP request messages (HttpRequestMessage with HttpHeaders and HttpContent) and receive an HttpResponseMessage object as a result of this request (including the status code and the response data).
As an example, in the following code, we create an extension that permits you to pull customers' address ...